@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  --parchment: #F7F5F0;
  --charcoal: #1A1918;
  --slate: #6B6560;
  --brass: #9C8B6E;
  --linen: #EFECE5;
  --stone: #D8D3CB;
  --graphite: #3D3935;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; }

body {
  background: var(--parchment);
  color: var(--charcoal);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── LAYOUT ─────────────────────────────────── */

.site-wrapper {
  max-width: 860px;
  margin: 0 auto;
  border-left: 0.5px solid var(--stone);
  border-right: 0.5px solid var(--stone);
  min-height: 100vh;
}

.inner {
  padding: 0 48px;
}

/* ─── NAV ────────────────────────────────────── */

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 0.5px solid var(--stone);
}

.site-nav-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1918;
  border-bottom: 2px solid #9C8B6E;
  padding-bottom: 2px;
}

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

.site-nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  transition: color 0.15s;
}

.site-nav-links a:hover { color: var(--charcoal); }

.site-nav-subscribe {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--parchment);
  background: var(--charcoal);
  border: none;
  padding: 8px 18px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.site-nav-subscribe:hover { background: var(--graphite); color: var(--parchment); }

/* ─── HERO ───────────────────────────────────── */

.site-hero {
  padding: 72px 48px 64px;
  border-bottom: 0.5px solid var(--stone);
  max-width: 640px;
}

.site-hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 20px;
}

.site-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--graphite);
  margin-bottom: 20px;
}

.site-hero-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 32px;
  max-width: 480px;
}

/* ─── SUBSCRIBE FORM ─────────────────────────── */

.subscribe-form {
  display: flex;
  max-width: 420px;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  border: 0.5px solid var(--stone);
  border-right: none;
  background: var(--parchment);
  color: var(--charcoal);
  outline: none;
  border-radius: 0;
  appearance: none;
}

.subscribe-form input[type="email"]::placeholder { color: var(--slate); }
.subscribe-form input[type="email"]:focus { border-color: var(--brass); }

.subscribe-form button {
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--parchment);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0;
  transition: background 0.15s;
}

.subscribe-form button:hover { background: var(--graphite); }

.subscribe-social-proof {
  margin-top: 14px;
  font-size: 11px;
  color: var(--slate);
}

/* ─── ABOUT SECTION ──────────────────────────── */

.site-about {
  padding: 56px 48px;
  border-bottom: 0.5px solid var(--stone);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  display: block;
  height: 0.5px;
  width: 32px;
  background: var(--brass);
}

.site-about-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.site-about-text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--slate);
}

.site-about-meta { padding-top: 4px; }

.meta-item {
  padding: 14px 0;
  border-top: 0.5px solid var(--stone);
}

.meta-item:last-child { border-bottom: 0.5px solid var(--stone); }

.meta-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 4px;
}

.meta-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--charcoal);
}

/* ─── ARCHIVE / POST LIST ────────────────────── */

.site-archive {
  padding: 56px 48px;
  border-bottom: 0.5px solid var(--stone);
}

.archive-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.archive-header a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

.archive-header a:hover { color: var(--charcoal); }

.post-list { margin-top: 0; }

.post-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  padding: 20px 0;
  border-top: 0.5px solid var(--stone);
  align-items: start;
  transition: opacity 0.15s;
}

.post-item:last-child { border-bottom: 0.5px solid var(--stone); }
.post-item:hover { opacity: 0.75; }

.post-item-date {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  padding-top: 4px;
  line-height: 1.5;
}

.post-item-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 5px;
}

.post-item-body p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--slate);
}

.post-item-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.post-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  border: 0.5px solid var(--stone);
  padding: 2px 7px;
}

/* ─── SINGLE POST ────────────────────────────── */

.post-header {
  padding: 64px 48px 48px;
  border-bottom: 0.5px solid var(--stone);
  max-width: 680px;
}

.post-header-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}

.post-header h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.post-header-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.post-content {
  padding: 48px;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--graphite);
}

.post-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--charcoal);
  margin: 40px 0 16px;
  letter-spacing: 0.01em;
}

.post-content h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--charcoal);
  margin: 32px 0 10px;
}

.post-content p { margin-bottom: 18px; }

.post-content p:last-child { margin-bottom: 0; }

.post-content strong {
  font-weight: 500;
  color: var(--charcoal);
}

.post-content em {
  font-style: italic;
  color: var(--slate);
}

.post-content hr {
  border: none;
  border-top: 0.5px solid var(--stone);
  margin: 32px 0;
}

.post-content blockquote {
  border-left: 2px solid var(--brass);
  padding: 4px 0 4px 20px;
  margin: 28px 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--graphite);
}

.post-content a {
  color: var(--brass);
  border-bottom: 0.5px solid var(--stone);
  padding-bottom: 1px;
}

.post-content a:hover { border-bottom-color: var(--brass); }

.post-footer {
  padding: 32px 48px;
  border-top: 0.5px solid var(--stone);
  border-bottom: 0.5px solid var(--stone);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-footer-back {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

.post-footer-back:hover { color: var(--charcoal); }

/* ─── SUBSCRIBE PAGE ─────────────────────────── */

.subscribe-page {
  padding: 72px 48px;
  max-width: 560px;
}

.subscribe-page h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 38px;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.subscribe-page p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 32px;
}

/* ─── FOOTER ─────────────────────────────────── */

.site-footer {
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--stone);
}

.site-footer-left {
  font-size: 11px;
  color: var(--slate);
  line-height: 1.6;
}

.site-footer-left strong {
  font-weight: 500;
  color: var(--graphite);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.site-footer-right {
  font-size: 10px;
  color: var(--slate);
  text-align: right;
  letter-spacing: 0.04em;
}

.site-disclaimer {
  padding: 14px 48px;
  background: var(--linen);
  font-size: 10px;
  color: var(--slate);
  line-height: 1.6;
  border-top: 0.5px solid var(--stone);
}

/* ─── PAGINATION ─────────────────────────────── */

.pagination {
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--stone);
}

.pagination a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

.pagination a:hover { color: var(--charcoal); }

.pagination-info {
  font-size: 11px;
  color: var(--slate);
}

/* ─── RESPONSIVE ─────────────────────────────── */

@media (max-width: 640px) {
  .site-nav { padding: 16px 24px; }
  .site-nav-links { display: none; }
  .site-hero { padding: 48px 24px; }
  .site-hero h1 { font-size: 32px; }
  .site-about { padding: 40px 24px; grid-template-columns: 1fr; gap: 32px; }
  .site-archive { padding: 40px 24px; }
  .post-item { grid-template-columns: 56px 1fr; }
  .post-header { padding: 40px 24px 32px; }
  .post-header h1 { font-size: 28px; }
  .post-content { padding: 32px 24px; }
  .post-footer { padding: 24px; flex-direction: column; gap: 12px; align-items: flex-start; }
  .site-footer { padding: 24px; flex-direction: column; gap: 12px; align-items: flex-start; }
  .site-disclaimer { padding: 14px 24px; }
  .inner { padding: 0 24px; }
}

/* ─── GHOST EDITOR REQUIRED CLASSES ─────────── */

.kg-width-wide {
  margin-left: -48px;
  margin-right: -48px;
}

.kg-width-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.kg-image { max-width: 100%; height: auto; display: block; }
.kg-image-card { margin: 24px 0; }
.kg-image-card figcaption { font-size: 12px; color: var(--slate); text-align: center; margin-top: 8px; }
.kg-gallery-container { display: flex; flex-direction: column; gap: 8px; margin: 24px 0; }
.kg-gallery-row { display: flex; gap: 8px; }
.kg-gallery-image { flex: 1; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kg-bookmark-card { border: 0.5px solid var(--stone); padding: 16px; margin: 24px 0; }
.kg-callout-card { display: flex; gap: 12px; padding: 16px 20px; background: var(--linen); border-left: 2px solid var(--brass); margin: 24px 0; }
.kg-callout-text { font-size: 14px; line-height: 1.7; }
.kg-toggle-card { border: 0.5px solid var(--stone); padding: 16px; margin: 24px 0; }
.kg-divider { border: none; border-top: 0.5px solid var(--stone); margin: 32px 0; }
.kg-video-card { margin: 24px 0; }
.kg-audio-card { border: 0.5px solid var(--stone); padding: 16px; margin: 24px 0; }

/* ─── PRICING PAGE ───────────────────────────── */

.pricing-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 48px;
}

.pricing-hero {
  max-width: 560px;
  margin-bottom: 64px;
}

.pricing-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 20px;
}

.pricing-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--graphite);
  margin-bottom: 16px;
}

.pricing-hero p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
}

.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 0.5px solid var(--stone);
  margin-bottom: 40px;
}

.pricing-tier {
  padding: 40px;
  position: relative;
}

.pricing-tier:first-child {
  border-right: 0.5px solid var(--stone);
}

.pricing-tier-featured {
  background: var(--linen);
}

.pricing-tier-badge {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment);
  background: var(--charcoal);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 20px;
}

.pricing-tier-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--stone);
}

.pricing-tier-name {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 10px;
}

.pricing-tier-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 42px;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-tier-period {
  font-size: 16px;
  color: var(--slate);
}

.pricing-tier-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
}

.pricing-tier-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-tier-features li {
  font-size: 13px;
  color: var(--slate);
  padding: 8px 0;
  border-bottom: 0.5px solid var(--stone);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-tier-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 11px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.pricing-btn-outline {
  border: 0.5px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}

.pricing-btn-outline:hover {
  background: var(--charcoal);
  color: var(--parchment);
}

.pricing-btn-solid {
  background: var(--charcoal);
  color: var(--parchment);
  border: 0.5px solid var(--charcoal);
}

.pricing-btn-solid:hover {
  background: var(--graphite);
}

.pricing-disclaimer {
  padding-top: 24px;
  border-top: 0.5px solid var(--stone);
}

.pricing-disclaimer p {
  font-size: 11px;
  color: var(--slate);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .pricing-page { padding: 40px 24px; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .pricing-tier:first-child { border-right: none; border-bottom: 0.5px solid var(--stone); }
}
