/* ════════════════════════════════════════════════════════════════
   CONSCIOUS CREATION — shared stylesheet (cc-styles.css)
   Light non-dual aesthetic · cream/gold · Cormorant Garamond + EB Garamond
   The canonical design system. Linked by every page.
   ════════════════════════════════════════════════════════════════ */

:root {
  --bg: #faf6ec;
  --paper: #f5f0e3;
  --ink: #1a1729;
  --ink-soft: #3d3756;
  --ink-dim: #6b5e7c;
  --indigo: #1f1647;
  --violet: #4a2d6e;
  --gold: #b8924a;
  --gold-light: #d4b876;
  --gold-pale: #e8d9b0;
  --rule: #c9b78a;
  --shadow: rgba(31, 22, 71, 0.13);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'EB Garamond', Georgia, serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ════ TOP BAR ════ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2.5rem;
  background: rgba(250, 246, 236, 0);
  transition: background 0.5s, padding 0.5s, box-shadow 0.5s;
}
.topbar.scrolled {
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(12px);
  padding: 1rem 2.5rem;
  box-shadow: 0 1px 0 rgba(201, 183, 138, 0.4);
}
/* inner pages have no transparent hero behind the bar — keep it readable from load */
.topbar.solid {
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 183, 138, 0.4);
}
.topbar .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--indigo);
  display: flex; align-items: center; gap: 0.6rem;
}
.topbar .brand .glyph { color: var(--gold); font-size: 0.9rem; }
.topbar nav { display: flex; gap: 2rem; align-items: center; }
.topbar nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim); transition: color 0.3s;
}
.topbar nav a:hover { color: var(--violet); }
.topbar nav a.current { color: var(--violet); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.topbar nav a.lang { color: var(--gold); }
@media (max-width: 860px) {
  .topbar { padding: 1.1rem 1.4rem; }
  .topbar nav { gap: 1.1rem; }
  .topbar nav a:not(.lang) { display: none; }
}

/* ════ HERO (homepage) ════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 6rem; overflow: hidden;
}
.hero-field { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.55; mix-blend-mode: multiply;
  animation: drift 22s ease-in-out infinite;
}
.orb.a { width: 46vw; height: 46vw; left: -8vw; top: 4vh;
  background: radial-gradient(circle, var(--gold-light), transparent 68%); }
.orb.b { width: 40vw; height: 40vw; right: -6vw; top: 18vh;
  background: radial-gradient(circle, var(--gold-pale), transparent 66%);
  animation-delay: -7s; animation-duration: 28s; }
.orb.c { width: 36vw; height: 36vw; left: 28vw; bottom: -8vh;
  background: radial-gradient(circle, #e6c98a, transparent 64%);
  animation-delay: -14s; animation-duration: 25s; }
.orb.d { width: 26vw; height: 26vw; right: 20vw; top: 30vh;
  background: radial-gradient(circle, #efe4c2, transparent 70%);
  animation-delay: -3s; animation-duration: 32s; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(4vw,-3vh) scale(1.08); }
  66% { transform: translate(-3vw,4vh) scale(0.95); }
}
.hero-field::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(250,246,236,0.6) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; }
.hero .eyebrow {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  opacity: 0; animation: rise 1.1s ease forwards 0.2s;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.08;
  color: var(--indigo); letter-spacing: -0.01em; margin-bottom: 1.8rem;
}
.hero h1 .l1 { display: block; opacity: 0; animation: rise 1.1s ease forwards 0.45s; }
.hero h1 .l2 { display: block; font-style: italic; color: var(--violet);
  opacity: 0; animation: rise 1.1s ease forwards 0.75s; }
.hero .sub {
  font-size: 1.35rem; line-height: 1.6; color: var(--ink-soft);
  max-width: 560px; margin: 0 auto 3rem; font-style: italic;
  opacity: 0; animation: rise 1.1s ease forwards 1.05s;
}
.hero .cta-row {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: rise 1.1s ease forwards 1.35s;
}
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ════ PAGE HERO (inner pages) — quieter than the homepage hero ════ */
.page-hero {
  position: relative; overflow: hidden;
  text-align: center; padding: 11rem 2rem 5rem;
}
.page-hero .hero-field { z-index: 0; }
.page-hero .orb { opacity: 0.4; }
.page-hero-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.page-hero .eyebrow {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.92rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
  opacity: 0; animation: rise 1s ease forwards 0.15s;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: clamp(2.3rem, 5.5vw, 3.9rem); line-height: 1.1;
  color: var(--indigo); letter-spacing: -0.01em; margin-bottom: 1.2rem;
  opacity: 0; animation: rise 1s ease forwards 0.35s;
}
.page-hero h1 em { display: block; font-style: italic; color: var(--violet); font-size: 0.82em; margin-top: 0.4rem; }
.page-hero .sub {
  font-size: 1.25rem; line-height: 1.6; color: var(--ink-soft);
  max-width: 560px; margin: 0 auto; font-style: italic;
  opacity: 0; animation: rise 1s ease forwards 0.55s;
}

.btn {
  font-family: 'Cormorant Garamond', serif; font-size: 0.92rem;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  padding: 1.05rem 2.4rem; border-radius: 2px; cursor: pointer;
  transition: all 0.35s; display: inline-block; border: 1px solid var(--gold);
}
.btn-primary { background: var(--indigo); color: var(--bg); border-color: var(--indigo); }
.btn-primary:hover { background: var(--violet); border-color: var(--violet); transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow); }
.btn-ghost { background: transparent; color: var(--indigo); }
.btn-ghost:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); transform: translateY(-2px); }

.scroll-hint {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--gold); font-size: 1.4rem;
  opacity: 0; animation: rise 1.1s ease forwards 1.7s, bob 2.4s ease-in-out infinite 2s;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ════ PORTRAIT ════ */
.about-portrait { margin: 0 auto 2.6rem; position: relative; }
.about-portrait img { width: 100%; display: block; filter: saturate(0.9) contrast(1.03); }
.about-portrait::after { content: ""; position: absolute; inset: 14px; border: 1px solid var(--rule); pointer-events: none; }

/* ════ SHARED SECTION ════ */
section.block { position: relative; padding: 7rem 2rem; }
.wrap { max-width: 1080px; margin: 0 auto; }
.wrap-narrow { max-width: 760px; margin: 0 auto; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s, transform 1s; }
.reveal.in { opacity: 1; transform: translateY(0); }
.center { text-align: center; }
.section-label {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.85rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3rem); color: var(--indigo); line-height: 1.15;
}
.section-h2 em { font-style: italic; color: var(--violet); }
/* prose for long-copy pages */
.prose p {
  font-size: 1.12rem; color: var(--ink-soft); line-height: 1.85; margin-bottom: 1.5rem;
}
.prose p.lead {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 1.5rem; line-height: 1.55; color: var(--indigo); font-style: italic;
  margin-bottom: 2.4rem;
}
.prose p em { color: var(--violet); font-style: italic; }
.prose h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--indigo);
  line-height: 1.2; margin: 3.5rem 0 1.4rem;
}
.prose h2 .label {
  display: block; font-style: italic; font-size: 0.82rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.divider { text-align: center; color: var(--gold); letter-spacing: 0.5em; font-size: 1rem; margin: 4rem 0; }

/* ════ FUSION (three lines) ════ */
.fusion { background: var(--indigo); color: var(--bg); text-align: center; padding: 8rem 2rem; }
.fusion .glyph { color: var(--gold-light); font-size: 1.4rem; letter-spacing: 0.5em; margin-bottom: 2.5rem; }
.fusion .lines { display: flex; flex-direction: column; gap: 1.5rem; max-width: 760px; margin: 0 auto; }
.fusion .lines p {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(1.6rem, 3.6vw, 2.5rem); line-height: 1.25; letter-spacing: 0.005em;
}
.fusion .lines p:nth-child(2) { color: var(--gold-light); font-style: italic; }
.fusion .lines .sep { color: var(--gold); font-size: 1rem; letter-spacing: 0.4em; opacity: 0.7; }

/* ════ THREE DOORS / card grids ════ */
.doors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
@media (max-width: 880px) { .doors-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }
.door {
  background: var(--paper); border: 1px solid rgba(201,183,138,0.5); border-radius: 4px;
  padding: 2.8rem 2rem; text-align: center; transition: all 0.4s;
  display: flex; flex-direction: column; align-items: center;
}
.door:hover { transform: translateY(-6px); box-shadow: 0 18px 44px var(--shadow); border-color: var(--gold); }
.door .icon { margin-bottom: 1.5rem; color: var(--gold); }
.door .door-label {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.7rem;
}
.door h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.7rem;
  color: var(--indigo); margin-bottom: 0.8rem; letter-spacing: 0.01em;
}
.door p { font-size: 1.02rem; color: var(--ink-soft); margin-bottom: 1.8rem; line-height: 1.6; flex-grow: 1; }
.door .door-link {
  font-family: 'Cormorant Garamond', serif; font-size: 0.82rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--violet);
  border-bottom: 1px solid var(--gold); padding-bottom: 3px; transition: all 0.3s;
}
.door:hover .door-link { color: var(--indigo); letter-spacing: 0.26em; }

/* ════ OUTCOMES ════ */
.outcomes { background: var(--paper); }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3rem; }
@media (max-width: 880px) { .outcomes-grid { grid-template-columns: 1fr; gap: 2.8rem; max-width: 420px; margin-left:auto; margin-right:auto; } }
.outcome { text-align: center; }
.outcome .num {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem;
  color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1rem;
  display: inline-block; width: 44px; height: 44px; line-height: 44px;
  border: 1px solid var(--gold); border-radius: 50%;
}
.outcome p {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400;
  color: var(--indigo); line-height: 1.35;
}

/* ════ BOOKS (homepage row) ════ */
.books-row { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; margin-top: 3.5rem; }
.book { width: 168px; transition: transform 0.4s; }
.book:hover { transform: translateY(-8px); }
.book .cover {
  aspect-ratio: 3/4; border-radius: 3px; box-shadow: 0 14px 34px var(--shadow);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.1rem 0.9rem; margin-bottom: 0.9rem; position: relative; overflow: hidden;
}
.book .cover .c-glyph { font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; text-align: center; }
.book .cover .c-title {
  font-family: 'Cormorant Garamond', serif; font-size: 0.92rem; line-height: 1.2;
  text-align: center; font-weight: 500;
}
.book .cover .c-foot { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.62rem; text-align: center; letter-spacing: 0.04em; }
.cover.indigo { background: linear-gradient(160deg, #2d1c54, #1c1138); color: var(--gold-pale); }
.cover.indigo .c-glyph, .cover.indigo .c-foot { color: var(--gold-light); }
.cover.violet { background: linear-gradient(160deg, #4a2d6e, #3d2956); color: var(--gold-pale); }
.cover.violet .c-glyph, .cover.violet .c-foot { color: var(--gold-light); }
.cover.navy { background: linear-gradient(165deg, #0d1c39, #14243f); color: #fff; border-left: 3px solid var(--gold); }
.cover.navy .c-glyph, .cover.navy .c-foot { color: var(--gold-light); }
.cover.cream { background: linear-gradient(160deg, #faf5ea, #f0e6cf); color: var(--indigo); border: 1px solid #d8c089; }
.cover.cream .c-glyph, .cover.cream .c-foot { color: var(--gold); }
.book .b-meta { text-align: center; }
.book .b-name { font-family: 'Cormorant Garamond', serif; font-size: 0.92rem; color: var(--indigo); line-height: 1.25; margin-bottom: 0.2rem; }
.book .b-price { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.85rem; color: var(--gold); }
.book .b-price.free { color: var(--violet); }

/* ════ BOOKS (full library page — large cover + detail) ════ */
.library { display: flex; flex-direction: column; gap: 4.5rem; margin-top: 4rem; }
.library-item {
  display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: center;
}
.library-item.reverse { grid-template-columns: 1fr 200px; }
.library-item.reverse .lib-cover-wrap { order: 2; }
@media (max-width: 760px) {
  .library-item, .library-item.reverse { grid-template-columns: 1fr; gap: 2rem; justify-items: center; text-align: center; }
  .library-item.reverse .lib-cover-wrap { order: 0; }
}
.lib-cover-wrap { display: flex; justify-content: center; }
.lib-cover {
  width: 200px; aspect-ratio: 3/4; border-radius: 4px; box-shadow: 0 18px 44px var(--shadow);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.4rem 1.1rem; position: relative; overflow: hidden;
}
.lib-cover .c-glyph { font-family: 'Cormorant Garamond', serif; font-size: 1rem; text-align: center; }
.lib-cover .c-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; line-height: 1.2; text-align: center; font-weight: 500; }
.lib-cover .c-foot { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.72rem; text-align: center; letter-spacing: 0.04em; }
.lib-detail .lib-eyebrow {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.78rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
}
.lib-detail h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.9rem;
  color: var(--indigo); line-height: 1.15; margin-bottom: 0.2rem;
}
.lib-detail h3 .lib-subtitle { display: block; font-style: italic; font-weight: 400; font-size: 0.66em; color: var(--violet); margin-top: 0.3rem; }
.lib-detail .lib-desc { font-size: 1.1rem; color: var(--ink-soft); line-height: 1.7; margin: 0.9rem 0 1rem; }
.lib-detail .lib-price {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--gold);
  letter-spacing: 0.05em;
}
.lib-detail .lib-price.free { color: var(--violet); }

/* ════ APP ════ */
.app { background: var(--indigo); color: var(--bg); }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 880px) { .app-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; } }
.app .section-label { color: var(--gold-light); }
.app h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15; color: var(--bg); margin-bottom: 1.5rem; }
.app h2 em { font-style: italic; color: var(--gold-light); }
.app .rhythm { display: flex; gap: 2rem; margin: 2rem 0; }
@media (max-width: 880px) { .app .rhythm { justify-content: center; } }
.app .rhythm span {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem;
  color: var(--gold-light); position: relative; padding-bottom: 0.5rem;
}
.app .rhythm span::after { content: ""; position: absolute; bottom: 0; left: 0; width: 24px; height: 1px; background: var(--gold); }
@media (max-width: 880px) { .app .rhythm span::after { left: 50%; transform: translateX(-50%); } }
.app p.lead { color: rgba(250,246,236,0.82); font-size: 1.1rem; margin-bottom: 2.2rem; }
.btn-gold { background: var(--gold); color: var(--indigo); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.phone {
  width: 260px; height: 530px; margin: 0 auto; border-radius: 36px;
  background: linear-gradient(160deg, #2d1c54, #150c2e); padding: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4), inset 0 0 0 2px rgba(212,184,118,0.25);
  position: relative;
}
.phone .screen {
  width: 100%; height: 100%; border-radius: 24px; overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, #2a1845, #faf6ec 60%);
  display: flex; flex-direction: column; align-items: center;
  padding: 3rem 1.4rem; text-align: center;
}
.phone .screen .p-glyph { color: var(--gold); font-size: 1.1rem; margin-bottom: 2rem; }
.phone .screen .p-greet { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.78rem; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.5rem; }
.phone .screen .p-q { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; line-height: 1.3; color: var(--indigo); margin-bottom: auto; }
.phone .screen .p-breath {
  width: 70px; height: 70px; border-radius: 50%; border: 1px solid var(--gold);
  margin: 1.5rem 0; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.7rem;
  animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { transform: scale(0.85); opacity: 0.6; } 50% { transform: scale(1.05); opacity: 1; } }
.phone .notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 90px; height: 22px; background: #150c2e; border-radius: 0 0 14px 14px; z-index: 2; }

/* ════ APP RHYTHM CARDS (app page) ════ */
.rhythm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
@media (max-width: 880px) { .rhythm-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }
.rhythm-card {
  background: var(--paper); border: 1px solid rgba(201,183,138,0.5); border-radius: 4px;
  padding: 2.6rem 2rem; text-align: center; transition: all 0.4s;
}
.rhythm-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px var(--shadow); border-color: var(--gold); }
.rhythm-card .r-time {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.78rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.rhythm-card h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.5rem; color: var(--indigo); margin-bottom: 0.8rem; }
.rhythm-card p { font-size: 1rem; color: var(--ink-soft); line-height: 1.65; }

/* ════ FEATURE GRID (app features) ════ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }
.feature {
  text-align: left; padding: 1.6rem 0; border-top: 1px solid var(--rule);
}
.feature .f-label {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.74rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.feature h4 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.35rem; color: var(--indigo); margin-bottom: 0.5rem; }
.feature p { font-size: 1rem; color: var(--ink-soft); line-height: 1.65; }

/* ════ CALLOUT / PRINCIPLE BLOCK ════ */
.callout {
  background: var(--paper); border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0;
  padding: 2rem 2.4rem; margin: 3rem auto; max-width: 760px;
}
.callout .label {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.78rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem;
}
.callout p { font-size: 1.1rem; color: var(--ink-soft); line-height: 1.75; font-style: italic; }
.callout p em { color: var(--violet); }

.principle-block { margin: 2.5rem auto; max-width: 760px; }
.principle-block .label {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.76rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.principle-block h4 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.55rem;
  color: var(--indigo); margin-bottom: 0.8rem; line-height: 1.2;
}
.principle-block p { font-size: 1.08rem; color: var(--ink-soft); line-height: 1.75; }
.principle-block p strong { color: var(--violet); font-weight: 600; }

/* ════ OFFERING (coaching) ════ */
.offering { background: var(--paper); border: 1px solid rgba(201,183,138,0.5); border-radius: 4px;
  padding: 3rem 2.8rem; margin-bottom: 2rem; transition: all 0.4s; }
.offering:hover { box-shadow: 0 16px 40px var(--shadow); border-color: var(--gold); }
.offering .o-eyebrow {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.78rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem;
}
.offering h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.9rem; color: var(--indigo); margin-bottom: 0.3rem; }
.offering .o-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--violet); margin-bottom: 1.2rem; }
.offering p { font-size: 1.08rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1rem; }
.offering-meta { display: flex; flex-wrap: wrap; gap: 2.4rem; margin: 1.6rem 0 0.5rem; }
.offering-meta .item { }
.offering-meta .item .m-label {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem;
}
.offering-meta .item .m-value { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--indigo); line-height: 1.3; }

/* ════ SOVEREIGN YEAR external strip ════ */
.external-strip { background: var(--indigo); color: var(--bg); text-align: center; padding: 5.5rem 2rem; }
.external-strip .section-label { color: var(--gold-light); }
.external-strip h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.2; color: var(--bg); margin-bottom: 1.2rem; }
.external-strip h2 em { font-style: italic; color: var(--gold-light); }
.external-strip p { color: rgba(250,246,236,0.82); font-size: 1.12rem; max-width: 600px; margin: 0 auto 2.2rem; line-height: 1.7; }

/* ════ WRITINGS index ════ */
.writing-list { display: flex; flex-direction: column; margin-top: 3rem; }
.writing-item { padding: 2.2rem 0; border-top: 1px solid var(--rule); }
.writing-item:last-child { border-bottom: 1px solid var(--rule); }
.writing-item .w-meta {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.74rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.writing-item h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.6rem; color: var(--indigo); margin-bottom: 0.5rem; transition: color 0.3s; }
.writing-item:hover h3 { color: var(--violet); }
.writing-item p { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.7; max-width: 720px; }

/* ════ CONTACT ════ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }
.contact-card {
  background: var(--paper); border: 1px solid rgba(201,183,138,0.5); border-radius: 4px;
  padding: 2.4rem 2rem; text-align: center;
}
.contact-card .c-label {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.74rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem;
}
.contact-card h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.4rem; color: var(--indigo); margin-bottom: 0.6rem; }
.contact-card p { font-size: 1rem; color: var(--ink-soft); line-height: 1.6; }
.contact-card a.c-email { color: var(--violet); font-weight: 500; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.contact-form { max-width: 600px; margin: 2.5rem auto 0; }
.form-field { margin-bottom: 1.6rem; }
.form-field label {
  display: block; font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.form-field input, .form-field textarea {
  width: 100%; padding: 0.9rem 1rem; font-family: 'EB Garamond', serif; font-size: 1.05rem;
  color: var(--ink); background: var(--paper); border: 1px solid var(--rule); border-radius: 3px;
  transition: border-color 0.3s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field textarea { min-height: 160px; resize: vertical; }

/* ════ CLOSE / DECREE ════ */
.close { text-align: center; padding: 8rem 2rem; }
.close .glyph { color: var(--gold); font-size: 1.3rem; letter-spacing: 0.5em; margin-bottom: 2.5rem; }
.close .decree {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.4; color: var(--indigo);
  max-width: 720px; margin: 0 auto 3rem;
}
.close .decree em { color: var(--violet); }
.decree-band {
  text-align: center; background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 4.5rem 2rem;
}
.decree-band .decree {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem); line-height: 1.45; color: var(--indigo); max-width: 720px; margin: 0 auto;
}
.decree-band .decree em { color: var(--violet); }

/* ════ FOOTER ════ */
footer { background: var(--paper); border-top: 1px solid var(--rule); padding: 3.5rem 2rem 2.5rem; text-align: center; }
footer .f-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--indigo); margin-bottom: 0.3rem; }
footer .f-tag { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.9rem; color: var(--gold); margin-bottom: 1.5rem; }
footer nav { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
footer nav a { font-family: 'Cormorant Garamond', serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); transition: color 0.3s; }
footer nav a:hover { color: var(--violet); }
footer .f-copy { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.78rem; color: var(--ink-dim); }
