/* ============================================================
   Light and Lamb — landing site styles
   Brand: warm cream + antique gold, literary serif display type.
   No frameworks; one Google Fonts request; everything responsive.
   ============================================================ */

:root {
  --cream: #faf6ec;
  --cream-deep: #f3ecdb;
  --paper: #fffdf8;
  --ink: #2b2620;
  --ink-soft: #5c5347;
  --gold: #8a6d3b;
  --gold-deep: #6e5527;
  --gold-pale: #e9dfc8;
  --sage: #7a8b6f;
  --sage-deep: #55644c;
  --radius: 16px;
  --shadow: 0 2px 6px rgba(72, 58, 34, 0.06), 0 12px 32px rgba(72, 58, 34, 0.08);
  --shadow-lift: 0 4px 10px rgba(72, 58, 34, 0.08), 0 20px 48px rgba(72, 58, 34, 0.14);
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Source Serif 4", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-deep); }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.15; color: var(--ink); margin: 0 0 0.4em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.15rem; }

.kicker {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 14px;
}

.lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); max-width: 58ch; }

section { padding: 84px 0; }
section.tint { background: var(--cream-deep); }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------------- nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 236, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-pale);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav .logo img { height: 44px; }
.nav nav { display: flex; align-items: center; gap: 28px; }
.nav nav a { text-decoration: none; color: var(--ink); font-size: 0.95rem; }
.nav nav a:hover { color: var(--gold-deep); }
.nav .nav-links { display: flex; gap: 28px; }
@media (max-width: 760px) { .nav .nav-links { display: none; } }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 32px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn.primary { background: var(--gold); color: #fff; box-shadow: var(--shadow); }
.btn.primary:hover { background: var(--gold-deep); transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn.ghost { color: var(--gold-deep); border: 1.5px solid var(--gold); }
.btn.ghost:hover { background: var(--gold-pale); }
.btn.small { padding: 10px 22px; font-size: 0.92rem; }
.btn-note { display: block; margin-top: 10px; font-size: 0.85rem; color: var(--ink-soft); }

/* ---------------- hero ---------------- */
.hero { padding: 72px 0 84px; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .hero .wrap { grid-template-columns: 1fr; } }
.hero .actions { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }

.trust-bar { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 34px; padding: 0; list-style: none; }
.trust-bar li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--ink-soft); }
.trust-bar svg { width: 17px; height: 17px; flex: none; color: var(--sage-deep); }

/* ---------------- figures & image stubs ---------------- */
figure.shot { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift); background: var(--gold-pale); }
figure.shot img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
figure.shot.tall img { aspect-ratio: 1/1; }

/* When a stub image is missing, show a graceful placeholder instead of a broken icon */
figure.shot.missing { display: flex; align-items: center; justify-content: center; aspect-ratio: 4/3; padding: 24px; }
figure.shot.tall.missing { aspect-ratio: 1/1; }
figure.shot.missing img { display: none; }
figure.shot.missing::after {
  content: attr(data-placeholder);
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--gold-deep);
  text-align: center;
  max-width: 30ch;
}

/* ---------------- how it works ---------------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 960px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }
.step {
  background: var(--paper);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.step .num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem; margin-bottom: 16px;
}
.step p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }

/* ---------------- feature split rows ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split ul.checks { list-style: none; padding: 0; margin: 18px 0 0; }
.split ul.checks li { display: flex; gap: 12px; margin: 12px 0; color: var(--ink-soft); }
.split ul.checks svg { width: 20px; height: 20px; flex: none; margin-top: 4px; color: var(--sage-deep); }

/* ---------------- sample spreads ---------------- */
.spreads { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 860px) { .spreads { grid-template-columns: 1fr; } }
.spreads figcaption { font-size: 0.88rem; color: var(--ink-soft); padding: 12px 4px 0; text-align: center; }
.spreads figure { margin: 0; }

/* ---------------- story catalog ---------------- */
.catalog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 960px) { .catalog { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .catalog { grid-template-columns: 1fr; } }
.story {
  background: var(--paper);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 8px;
}
.story .tag {
  align-self: flex-start;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage-deep); background: #edf0e8;
  padding: 4px 10px; border-radius: 999px;
}
.story h3 { margin: 4px 0 0; }
.story p { margin: 0; font-size: 0.93rem; color: var(--ink-soft); }
.story .ref { font-size: 0.82rem; color: var(--gold-deep); font-style: italic; }

/* ---------------- pricing ---------------- */
.price-card {
  max-width: 520px; margin: 44px auto 0;
  background: var(--paper);
  border: 1.5px solid var(--gold);
  border-radius: 22px;
  padding: 42px 40px;
  box-shadow: var(--shadow-lift);
  text-align: center;
}
.price-card .price { font-family: var(--display); font-size: 3.4rem; font-weight: 600; color: var(--gold-deep); }
.price-card .price small { font-size: 1.05rem; color: var(--ink-soft); font-family: var(--body); font-weight: 400; }
.price-card ul { list-style: none; padding: 0; margin: 22px 0 30px; text-align: left; }
.price-card ul li { display: flex; gap: 12px; margin: 10px 0; color: var(--ink-soft); font-size: 0.97rem; }
.price-card ul svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--sage-deep); }

/* ---------------- FAQ ---------------- */
.faq { max-width: 760px; margin: 40px auto 0; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--gold-pale);
  border-radius: 14px;
  margin: 12px 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%; transform: translateY(-52%);
  font-family: var(--display); font-size: 1.5rem; color: var(--gold);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0; padding: 0 22px 20px; color: var(--ink-soft); }

/* ---------------- final CTA ---------------- */
.cta-final {
  background: linear-gradient(160deg, var(--gold-deep), var(--gold));
  color: #fff; text-align: center;
  padding: 92px 0;
}
.cta-final h2, .cta-final .lede { color: #fff; }
.cta-final .lede { opacity: 0.92; }
.cta-final .btn.primary { background: #fff; color: var(--gold-deep); margin-top: 26px; }
.cta-final .btn.primary:hover { background: var(--cream); }

/* ---------------- footer ---------------- */
footer.site {
  background: var(--cream);
  border-top: 1px solid var(--gold-pale);
  padding: 44px 0;
  font-size: 0.9rem; color: var(--ink-soft);
}
footer.site .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
footer.site nav { display: flex; gap: 22px; flex-wrap: wrap; }
footer.site a { color: var(--ink-soft); text-decoration: none; }
footer.site a:hover { color: var(--gold-deep); }

/* ---------------- policy pages ---------------- */
.policy { max-width: 760px; margin: 0 auto; padding: 64px 24px 96px; }
.policy h1 { margin-bottom: 6px; }
.policy .updated { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 40px; }
.policy h2 { font-size: 1.35rem; margin-top: 44px; }
.policy h3 { font-size: 1.05rem; margin-top: 26px; }
.policy p, .policy li { color: var(--ink-soft); }
.policy table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.policy th, .policy td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--gold-pale); vertical-align: top; }
.policy .note {
  background: var(--cream-deep);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  font-size: 0.95rem;
}

/* ---------------- misc ---------------- */
.reveal { animation: rise 0.7s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; } html { scroll-behavior: auto; } }
