  :root {
    --ink: #0d0d0b;
    --ink-mid: #3a3a35;
    --ink-light: #787870;
    --paper: #f5f2eb;
    --paper-dark: #ede9e0;
    --paper-darker: #e2ddd2;
    --gold: #b8943f;
    --gold-light: #d4ac5a;
    --gold-pale: #f0e6c8;
    --teal: #1a6b56;
    --teal-light: #2a8a6e;
    --accent: #8b2e2e;
    --rule: rgba(13,13,11,0.12);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* GRAIN OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
  }

  /* TYPOGRAPHY */
  .serif { font-family: 'Cormorant Garamond', Georgia, serif; }

  h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; letter-spacing: -0.01em; }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(245,242,235,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--rule);
  }

  .nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
  }

  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-mid);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    background: var(--paper);
  }

  .hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: 0;
    opacity: 0.95;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    padding: 8rem 4rem 5rem 5rem;
    max-width: 52%;
  }

  .hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    max-width: 16ch;
    margin-bottom: 1.25rem;
    color: var(--ink);
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--ink-mid);
    max-width: 44ch;
    margin: 0 0 2.5rem;
    font-weight: 300;
    line-height: 1.65;
  }

  .hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

  @media (max-width: 768px) {
    .hero-content {
      max-width: 100%;
      padding: 7rem 2rem 4rem;
      background: rgba(245,242,235,0.88);
    }
    .hero-banner-img { object-position: center center; opacity: 0.4; }
  }

  .btn-primary {
    display: inline-block;
    background: var(--ink);
    color: var(--paper);
    padding: 0.9rem 2.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--ink-mid); transform: translateY(-1px); }

  .btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--ink-mid);
    padding: 0.9rem 2.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--rule);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: var(--ink-mid); color: var(--ink); }

  .hero-note {
    margin-top: 2rem;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    color: var(--ink-light);
  }

  /* DIVIDER */
  .rule-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .rule-divider::before, .rule-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rule);
  }
  .rule-divider span {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-light);
    white-space: nowrap;
  }

  /* SECTIONS */
  section { padding: 6rem 2rem; }

  .container { max-width: 1100px; margin: 0 auto; }
  .container-narrow { max-width: 700px; margin: 0 auto; }

  .section-label {
    font-size: 0.9rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }

  /* THREE TRUTHS */
  .truths { background: var(--paper-dark); }

  .truths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-top: 3.5rem;
  }

  .truth-item { position: relative; padding-left: 1.5rem; }
  .truth-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0.3rem;
    width: 2px;
    height: calc(100% - 0.3rem);
    background: var(--gold);
    opacity: 0.5;
  }

  .truth-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--paper-darker);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .truth-item h3 {
    font-size: 1.45rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  .truth-item p {
    font-size: 0.9rem;
    color: var(--ink-mid);
    line-height: 1.7;
  }

  /* PHASES */
  .phases-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 4rem;
    border: 1px solid var(--rule);
  }

  .phase-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--rule);
    position: relative;
    transition: background 0.25s;
  }
  .phase-card:last-child { border-right: none; }
  .phase-card:hover { background: var(--paper-dark); }

  .phase-tag {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .phase-name {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
  }

  .phase-desc { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.6; }

  /* ASSESSMENT */
  .assessment { background: var(--ink); color: var(--paper); }

  .assessment .section-label { color: var(--gold-light); }

  .assessment h2 { color: var(--paper); }

  .assessment-intro {
    color: rgba(245,242,235,0.7);
    margin-bottom: 3rem;
    font-size: 1.05rem;
  }

  .q-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 2.5rem;
  }

  .q-dot {
    width: 28px;
    height: 2px;
    background: rgba(245,242,235,0.2);
    transition: background 0.3s;
  }
  .q-dot.active { background: var(--gold); }
  .q-dot.done { background: rgba(245,242,235,0.5); }

  .question-block { min-height: 220px; }

  .q-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--paper);
  }

  .q-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .q-option {
    display: block;
    padding: 1rem 1.5rem;
    background: rgba(245,242,235,0.05);
    border: 1px solid rgba(245,242,235,0.15);
    color: rgba(245,242,235,0.85);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    width: 100%;
  }
  .q-option:hover { background: rgba(245,242,235,0.1); border-color: rgba(245,242,235,0.35); color: var(--paper); }
  .q-option.selected { background: var(--gold); border-color: var(--gold); color: var(--ink); }

  /* RESULT */
  .result-block { display: none; }
  .result-block.visible { display: block; }

  .result-phase {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
  }

  .result-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: var(--paper);
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }

  .result-description {
    font-size: 1.05rem;
    color: rgba(245,242,235,0.8);
    line-height: 1.7;
    max-width: 60ch;
    margin-bottom: 2.5rem;
  }

  .result-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    padding: 0.9rem 2.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-gold:hover { background: var(--gold-light); }

  .btn-outline-light {
    display: inline-block;
    background: transparent;
    color: rgba(245,242,235,0.7);
    padding: 0.9rem 2.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(245,242,235,0.25);
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-outline-light:hover { border-color: rgba(245,242,235,0.6); color: var(--paper); }

  /* TIERS */
  .tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
  }

  .tier-card {
    border: 1px solid var(--rule);
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .tier-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(13,13,11,0.08); }

  .tier-card.featured {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--paper);
  }

  .tier-tag {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .tier-name {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
  }

  .tier-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.25rem;
  }
  .tier-price span { font-size: 1rem; opacity: 0.6; }

  .tier-desc {
    font-size: 0.95rem;
    color: var(--ink-mid);
    margin: 1rem 0 1.5rem;
    line-height: 1.6;
  }
  .tier-card.featured .tier-desc { color: rgba(245,242,235,0.7); }

  .tier-list { list-style: none; margin-bottom: 2rem; }
  .tier-list li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--rule);
    color: var(--ink-mid);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .tier-card.featured .tier-list li {
    border-color: rgba(245,242,235,0.1);
    color: rgba(245,242,235,0.75);
  }
  .tier-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

  /* FAQ */
  .faq { background: var(--paper-dark); }

  .faq-list { margin-top: 3rem; }

  .faq-item {
    border-top: 1px solid var(--rule);
    padding: 1.5rem 0;
  }
  .faq-item:last-child { border-bottom: 1px solid var(--rule); }

  .faq-q {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .faq-toggle {
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.25s;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }

  .faq-a {
    display: none;
    font-size: 0.9rem;
    color: var(--ink-mid);
    line-height: 1.75;
    padding-top: 1rem;
    max-width: 70ch;
  }
  .faq-item.open .faq-a { display: block; }

  /* FOOTER */
  footer {
    background: var(--ink);
    color: rgba(245,242,235,0.5);
    padding: 3rem 2rem;
    text-align: center;
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--paper);
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
  }

  .footer-tagline {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
    text-transform: uppercase;
  }

  footer p { font-size: 0.9rem; line-height: 1.6; }
  footer a { color: rgba(245,242,235,0.5); text-decoration: none; }
  footer a:hover { color: var(--gold-light); }

  /* QUOTE BAND */
  .quote-band {
    padding: 5rem 2rem;
    text-align: center;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    max-width: 52ch;
    margin: 0 auto;
    line-height: 1.35;
    color: var(--ink-mid);
  }

  blockquote cite {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--gold);
    margin-top: 1.5rem;
  }

  /* ANIMATIONS */
  .fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 680px) {
    .phases-strip { grid-template-columns: 1fr; }
    .phase-card { border-right: none; border-bottom: 1px solid var(--rule); }
    .phase-card:last-child { border-bottom: none; }
    nav { padding: 1rem; }
    .nav-links { display: none; }
  }

/* ===== CONTACT PAGE ===== */
.nav-back {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--gold); }

.page-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 5rem;
}

.page-left {
  padding: 6rem 4rem 6rem 2rem;
  border-right: 1px solid var(--rule);
  max-width: 560px;
  margin-left: auto;
}

.page-right {
  padding: 6rem 2rem 6rem 4rem;
  max-width: 560px;
}

.page-label {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.left-body {
  color: var(--ink-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-detail {
  padding: 1.25rem 0;
  border-top: 1px solid var(--rule);
}
.contact-detail:last-child { border-bottom: 1px solid var(--rule); }

.contact-detail-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.35rem;
}

.contact-detail a {
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--gold); }
.contact-detail p { font-size: 0.9rem; color: var(--ink-mid); }

.form-group { margin-bottom: 1.75rem; }

label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--paper-dark);
  border: 1px solid var(--rule);
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 140px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23787870' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--ink-mid); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.form-note { font-size: 0.85rem; color: var(--ink-light); margin-top: 1rem; text-align: center; }

.success-message { display: none; text-align: center; padding: 3rem 2rem; }
.success-message.visible { display: block; }
.success-message h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 1rem; }
.success-message p { color: var(--ink-mid); font-size: 0.95rem; }

.error-msg { font-size: 0.85rem; color: #8b2e2e; margin-top: 0.5rem; display: none; }
.error-msg.visible { display: block; }

/* ===== LEGAL PAGES ===== */
.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
}

.legal-header { margin-bottom: 3rem; border-bottom: 1px solid var(--rule); padding-bottom: 2rem; }
.legal-eyebrow { font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.legal-meta { font-size: 0.9rem; color: var(--ink-light); }
.legal-meta a { color: var(--gold); text-decoration: none; }

.legal-section { margin-bottom: 3.5rem; }
.legal-section-label { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.legal-body { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.8; }
.legal-body p { margin-bottom: 1rem; }
.legal-body ul { margin: 1rem 0 1rem 1.5rem; }
.legal-body li { margin-bottom: 0.5rem; }
.legal-body strong { color: var(--ink); font-weight: 500; }
.legal-body a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(184,148,63,0.3); }
.legal-body a:hover { border-color: var(--gold); }

.legal-divider { height: 1px; background: var(--rule); margin: 3rem 0; }

@media (max-width: 720px) {
  .page-wrap { grid-template-columns: 1fr; }
  .page-left { border-right: none; border-bottom: 1px solid var(--rule); padding: 7rem 1.25rem 3rem; max-width: 100%; margin: 0; }
  .page-right { padding: 3rem 1.25rem 5rem; max-width: 100%; }
  nav { padding: 1rem 1.25rem; }
  footer { grid-column: 1; padding: 2.5rem 1.25rem; }
}

/* ===== CONTACT PAGE FOOTER FIX ===== */
.page-wrap > footer {
  grid-column: 1 / -1;
}

/* ===== LEGAL PAGE STYLES ===== */
.page-header {
  max-width: 780px;
  margin: 0 auto;
  padding: 8rem 2rem 3rem;
  border-bottom: 1px solid var(--rule);
}

.content {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.section {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--rule);
}

.section:last-child {
  border-bottom: none;
}

.section-num {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.section p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.section ul {
  margin: 0.75rem 0 0.75rem 1.5rem;
}

.section li {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.section strong {
  color: var(--ink);
  font-weight: 500;
}

.section a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,148,63,0.3);
}

.section a:hover {
  border-color: var(--gold);
}

.callout {
  background: var(--paper-dark);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.6;
  margin: 1.5rem 0;
}
