/* Della Desk — shared marketing styles (extracted from the single-page landing,
   2026-07-10, when the site split into one job per page). Every marketing page
   links this file; page-specific styles stay inline on their page.
   Brand: quiet luxury — ivory paper, ink, champagne gold, Fraunces + Inter. */

:root {
  --paper: #f7f5f0;      /* warm ivory */
  --card: #fffdf9;
  --ink: #191917;
  --ink-soft: #33322e;
  --muted: #726d61;
  --gold: #a0824c;
  --gold-soft: #c3a877;
  --line: #e4dfd3;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--sans); color: var(--ink); line-height: 1.6; background: var(--paper); font-size: 16px;
  -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.rule { width: 56px; height: 1px; background: var(--gold-soft); margin: 22px auto; border: 0; }

/* Shared top nav — wordmark + the five pages + Start free. Wraps on small
   screens (no hamburger at this size; tested at 375px). */
nav.site { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; flex-wrap: wrap; gap: 12px 18px; }
.brand { font-family: var(--serif); font-weight: 600; font-size: 24px; letter-spacing: .01em; color: var(--ink); }
.brand .dot { color: var(--gold); }
/* The D. monogram — same mark as the favicon and app icon, so the symbol is
   seen everywhere the name is (brand recognition, Richy 7/11). Inline-block,
   NOT flex on .brand: flex gap would split the gold period off the wordmark. */
.brand .mark { width: 26px; height: 26px; border-radius: 7px; display: inline-block; vertical-align: -5px; margin-right: 11px; }
.navlinks { display: flex; gap: 10px 22px; align-items: center; flex-wrap: wrap; }
.navlinks .quiet { font-size: 14px; font-weight: 500; color: var(--ink-soft); letter-spacing: .02em; }
.navlinks .quiet:hover { color: var(--gold); }
.navlinks .quiet.active { color: var(--gold); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--ink); cursor: pointer;
  border-radius: 999px; font-weight: 500; font-size: 15px; padding: 13px 28px; letter-spacing: .02em;
  transition: all .25s ease; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: transparent; color: var(--ink); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.navlinks .btn { padding: 10px 22px; font-size: 14px; }

/* Section scaffolding */
section { padding: 88px 0; }
section.white { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sechead { text-align: center; margin-bottom: 56px; }
h1.sec, h2.sec { font-family: var(--serif); font-size: clamp(28px, 4.4vw, 44px); font-weight: 500; letter-spacing: -.005em; line-height: 1.2; margin-top: 14px; }
h1.sec em, h2.sec em { font-style: italic; color: var(--gold); font-weight: 400; }
p.secsub { color: var(--muted); margin: 16px auto 0; font-size: 16.5px; max-width: 640px; line-height: 1.75; }
p.secsub b { color: var(--ink); font-weight: 600; }
/* Key-fact emphasis (owner ruling 2026-07-10 PM): load-bearing facts read
   bold in ink; money facts may carry the gold accent. Never shouty. */
.finalcta p b { color: var(--paper); font-weight: 600; }

.stat { font-family: var(--serif); font-size: clamp(64px, 10vw, 120px); font-weight: 500; color: var(--ink); line-height: 1; }
.stat sup { font-size: .35em; color: var(--gold); font-weight: 400; }

/* Feature / teaching cards */
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feat { padding: 36px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent;
  cursor: pointer; transition: background .2s ease; position: relative; }
.feat .no { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 18px; margin-bottom: 14px; }
.feat h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 10px; letter-spacing: .005em; }
.feat p { color: var(--muted); font-size: 14.5px; line-height: 1.7; }
.feat p b { color: var(--ink); font-weight: 600; }
.feat:hover, .feat:focus-visible { background: #fffdf8; outline: none; }
.feat:focus-visible { box-shadow: inset 0 0 0 2px var(--gold-soft); }
.feat .more { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: .02em; }
.feat:hover .more { text-decoration: underline; }
.taphint { text-align: center; color: var(--gold); font-size: 13.5px; font-weight: 600; letter-spacing: .04em; margin: -32px 0 40px; }

/* Modals — teaching stories and plan spec sheets */
.modal-overlay { position: fixed; inset: 0; background: rgba(20,18,14,.55); backdrop-filter: blur(3px);
  display: none; align-items: center; justify-content: center; padding: 20px; z-index: 100; }
.modal-overlay.open { display: flex; }
.modal { background: var(--card); border-radius: 8px; max-width: 560px; width: 100%; max-height: 88vh; overflow-y: auto;
  padding: 40px 40px 36px; position: relative; box-shadow: 0 40px 100px -30px rgba(0,0,0,.5); }
.modal .x { position: absolute; top: 18px; right: 20px; font-size: 26px; line-height: 1; color: var(--muted); background: none; border: 0; cursor: pointer; }
.modal .x:hover { color: var(--ink); }
.modal .eyebrow { color: var(--gold); }
.modal h3 { font-family: var(--serif); font-weight: 600; font-size: 27px; margin: 12px 0 6px; letter-spacing: -.005em; }
.modal .lead { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.modal .scene { background: var(--paper); border-left: 3px solid var(--gold-soft); border-radius: 4px;
  padding: 18px 20px; margin: 22px 0; font-size: 15px; line-height: 1.75; color: var(--ink-soft); }
.modal .scene b { color: var(--ink); }
.modal .why { font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.modal .why strong { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--ink); }
.modal .cta { display: inline-flex; margin-top: 26px; }
.modal .specrow { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.modal .specrow:last-of-type { border-bottom: 0; }
.modal .specrow .lbl { color: var(--muted); }
.modal .specrow .val { font-weight: 600; text-align: right; }
.modal .price-head { font-family: var(--serif); font-size: 40px; font-weight: 500; margin: 6px 0 2px; }
.modal .price-head small { font-size: 15px; color: var(--muted); font-family: var(--sans); font-weight: 400; }
.modal .annual-line { color: var(--gold); font-size: 13.5px; font-weight: 600; margin-bottom: 18px; }
.modal ul.specfeat { list-style: none; padding: 0; margin: 18px 0 0; }
.modal ul.specfeat li { padding: 7px 0 7px 22px; position: relative; font-size: 14.5px; color: var(--ink-soft); }
.modal ul.specfeat li::before { content: "\2713"; color: var(--gold); position: absolute; left: 0; font-weight: 700; }

.planmore { display: block; width: 100%; margin-top: 10px; background: none; border: 0; cursor: pointer;
  font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: .02em; font-family: var(--sans); }
.planmore:hover { text-decoration: underline; }
.planlink { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.planlink:hover { color: var(--ink); }

/* Dark closing CTA panel */
.finalcta { text-align: center; background: var(--ink); color: var(--paper); border-radius: 4px; padding: 88px 32px; margin: 40px 0 88px; }
.finalcta .eyebrow { color: var(--gold-soft); }
.finalcta h2 { font-family: var(--serif); font-size: clamp(30px, 4.6vw, 48px); font-weight: 500; margin: 16px 0 14px; }
.finalcta h2 em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.finalcta p { opacity: .75; margin-bottom: 36px; font-size: 16px; }
.finalcta .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.finalcta .btn:hover { background: transparent; color: var(--paper); }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 40px 0 48px; color: var(--muted); font-size: 13px; text-align: center; letter-spacing: .03em; }
footer .brand { font-size: 17px; display: block; margin-bottom: 10px; color: var(--ink); }
footer a:hover { color: var(--gold); }
