:root {
  --char:     #3a3a3a;
  --char-d:   #2a2a2a;
  --gold:     #c9992b;
  --gold-d:   #a87c17;
  --cream:    #faf7f1;
  --ink:      #33312e;
  --ink-soft: #6b6660;
  --line:     #e5e0d8;
  --radius:   6px;
  --wrap:     1140px;
}

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

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
}

h1, h2, h3 { line-height: 1.25; margin: 0 0 .55em; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 700; }
h1 { font-size: 2.4rem; }
h2 { font-size: 1.7rem; color: var(--char-d); }
h3 { font-size: 1.05rem; font-weight: 600; }
p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-d); }
a:hover, a:focus-visible { color: var(--char-d); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.container { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--char); }
.header__in { display: flex; align-items: center; gap: 24px; min-height: 74px; }
.brand { margin-right: auto; }
.brand img { width: 176px; height: auto; }

.primary-nav ul { display: flex; flex-wrap: wrap; gap: 2px; list-style: none; margin: 0; padding: 0; }
.primary-nav a { display: block; padding: 9px 14px; border-radius: var(--radius); color: #f2ede4; text-decoration: none; font-size: .92rem; font-weight: 500; }
.primary-nav a:hover, .primary-nav a:focus-visible { background: var(--char-d); color: var(--gold); }

.nav-toggle { display: none; width: 46px; height: 42px; background: none; border: 1px solid #55524d; border-radius: var(--radius); cursor: pointer; }
.nav-toggle__box { display: block; position: relative; width: 22px; height: 2px; margin: 0 auto; background: #fff; }
.nav-toggle__box::before, .nav-toggle__box::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: #fff; }
.nav-toggle__box::before { top: -7px; }
.nav-toggle__box::after  { top:  7px; }

/* hero */
.hero { background: var(--cream); padding: 48px 0; }
.hero__in { display: grid; grid-template-columns: 1.3fr .8fr; gap: 40px; align-items: center; }
.hero__eyebrow { margin: 0 0 .4em; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-d); font-weight: 600; }
.hero h1 { max-width: 17ch; }
.hero__lead { font-size: 1.06rem; color: var(--ink-soft); max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }
.hero__img { margin: 0; }
.hero__img img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); }

.promises { list-style: none; margin: 0 0 1.4em; padding: 0; }
.promises li { position: relative; padding-left: 26px; margin-bottom: 6px; color: var(--ink-soft); }
.promises li::before { content: ""; position: absolute; left: 3px; top: .72em; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }

.btn { display: inline-block; padding: 12px 26px; border-radius: 999px; font-weight: 600; text-decoration: none; font-size: .93rem; }
.btn--primary { background: var(--gold); color: #2a2213; }
.btn--primary:hover { background: var(--gold-d); color: #fff; }
.btn--ghost { border: 2px solid var(--char); color: var(--char); padding: 10px 24px; }
.btn--ghost:hover { background: var(--char); color: #fff; }

/* sections */
.section { padding: 48px 0; }
.section--alt { background: var(--cream); }
.section__title { position: relative; padding-bottom: 12px; margin-bottom: 24px; }
.section__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 56px; height: 3px; background: var(--gold); }
.section__lead { max-width: 76ch; color: var(--ink-soft); margin-bottom: 26px; }

.cards, .topics, .posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards > *, .topics > *, .posts > * { min-width: 0; }
.card, .topic, .post { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.card h3, .topic h3, .post h3 { color: var(--char-d); }
.card p, .post p { margin: 0; font-size: .93rem; color: var(--ink-soft); }
.topic ul { list-style: none; margin: 0; padding: 0; font-size: .92rem; color: var(--ink-soft); }
.topic li { position: relative; padding: 4px 0 4px 18px; }
.topic li::before { content: ""; position: absolute; left: 2px; top: 1.05em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.posts { grid-template-columns: repeat(2, 1fr); }

.wide { margin: 26px 0 0; }
.wide img { width: 100%; max-height: 340px; object-fit: cover; border-radius: var(--radius); }

.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.panel { background: #fff; border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 20px 24px; min-width: 0; box-shadow: 0 1px 8px rgba(0,0,0,.05); }
.panel h3 { color: var(--char-d); }
.panel p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.section--ebook { background: var(--char); color: #ece7de; }
.ebook { display: flex; gap: 26px; align-items: center; }
.ebook img { width: 72px; height: auto; flex: none; }
.ebook h2 { color: #fff; }
.ebook p { color: #cfc8bd; max-width: 70ch; }
.ebook p:last-child { margin-bottom: 0; }

.press { margin: 0; background: var(--cream); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 22px 26px; max-width: 74ch; }
.press p { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: 1.15rem; }

.section--contact { background: var(--cream); }
.contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact__box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; min-width: 0; }
.contact__box h3 { color: var(--gold-d); }
.contact__box a { font-size: 1.1rem; font-weight: 600; text-decoration: none; }
.contact__box p:last-child { margin-bottom: 0; }

/* footer */
.site-footer { background: var(--char-d); color: #b3aca2; font-size: .92rem; padding-top: 34px; }
.footer__in { display: grid; grid-template-columns: .8fr 1fr 1fr; gap: 26px; padding-bottom: 22px; align-items: start; }
.footer__col img { width: 130px; border-radius: var(--radius); }
.footer__head { color: #fff; font-weight: 600; margin-bottom: .6em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 6px; }
.site-footer a { color: #b3aca2; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid #444039; padding: 14px 0; }
.footer__bottom p { margin: 0; font-size: .84rem; }

/* mobile */
@media (max-width: 1000px) {
  .cards, .topics { grid-template-columns: repeat(2, 1fr); }
  .contact, .footer__in { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .hero, .section { padding: 32px 0; }
  .nav-toggle { display: block; }
  .primary-nav { display: none; width: 100%; order: 3; padding-bottom: 12px; }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav a { padding: 11px 8px; border-bottom: 1px solid #4b4741; border-radius: 0; }
  .header__in { flex-wrap: wrap; }
  .hero__in, .cards, .topics, .posts, .two-col, .contact, .footer__in { grid-template-columns: 1fr; }
  .hero__img img { aspect-ratio: 4 / 3; }
  .ebook { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
