/* ==========================================================================
   Specula One — Phase 3: Packages, Why, Seal, Owners, Footer
   Rhythm: light (Why) → tinted light (Packages) → dark (Mark) → light (Owners)
   ========================================================================== */

.light-section { background: var(--ivory); color: var(--ink); }
.light-section-tint { background: var(--ivory-deep); color: var(--ink); }

.section-inner { max-width: 1240px; margin: 0 auto; padding: var(--space-section) var(--space-gutter); }
.section-inner-tight { padding-top: calc(var(--space-section) * 0.77); padding-bottom: calc(var(--space-section) * 0.77); }

.eyebrow-light { color: var(--bronze-deep); }

.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.22;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 0 32px;
}

/* .reveal now lives in base.css (canonical for the public site). */

/* ---------- packages ---------- */

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone-line);
  border: 1px solid var(--stone-line);
  margin-bottom: 14px;
}
.pkg-card { background: var(--ivory); padding: 21px 26px; display: flex; flex-direction: column; }
.pkg-card-featured { background: var(--stone); border-top: 2px solid var(--bronze); }

.pkg-name { font-family: var(--serif); font-weight: 500; font-size: 20px; margin: 0 0 6px; color: var(--ink); }
.pkg-tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-faint); margin: 0 0 10px;
}
.pkg-scope { color: var(--ink-dim); font-size: 14px; line-height: 1.55; margin: 0 0 10px; flex-grow: 1; }

.pkg-deliver {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 9px; border-top: 1px solid var(--stone-line);
  margin-bottom: 10px; font-size: 13.5px; color: var(--ink); line-height: 1.4;
}
.pkg-deliver-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-dim); }
.pkg-mark { color: var(--bronze-deep); }
/* The featured card sits on --stone, darker than the other two, so its
   quietest text needs one more step to hold WCAG AA. */
.pkg-card-featured .pkg-deliver-label,
.pkg-card-featured .pkg-scope { color: var(--ink); }

/* .pkg-cta/.pkg-cta-solid now live in components.css (shared CTA system). */

.pkg-philosophy { max-width: 640px; padding-top: 14px; border-top: 1px solid var(--stone-line); }
.pkg-philosophy-lead { font-family: var(--serif); font-size: 17px; color: var(--ink); margin: 0 0 6px; }
.pkg-philosophy-body { color: var(--ink-dim); font-size: 14px; line-height: 1.55; margin: 0 0 8px; }
.pkg-philosophy-close { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--bronze); margin: 0; }

@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }

/* ---------- why / compare ---------- */

.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--stone-line); border: 1px solid var(--stone-line);
}
.compare-col { background: var(--ivory-deep); padding: 30px 36px; }
.compare-col-specula { background: var(--ivory); position: relative; }
.compare-col-specula::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--bronze);
}
.compare-col h3 {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-dim); margin: 0 0 18px;
}
.compare-col-specula h3 { color: var(--bronze-deep); }
.compare-col li { padding: 10px 0; border-top: 1px solid var(--stone-line); color: var(--ink-dim); font-size: 14.5px; }
.compare-col li:first-child { border-top: none; }
.compare-col-specula li { color: var(--ink); }
.compare-col-specula li { padding-left: 14px; }
.compare-col-specula li::before { content: ''; display: inline-block; width: 5px; height: 5px; margin-right: 10px; margin-left: -14px; border-radius: 50%; background: var(--bronze); vertical-align: middle; }

.why-independence {
  margin: 24px 0 0; font-family: var(--serif); font-style: italic; font-size: 17px;
  color: var(--ink); text-align: center;
}

@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } }

/* ---------- seal ---------- */

.seal-section { padding: var(--space-section) var(--space-gutter); }
.seal-section-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 80px; align-items: center;
}
.seal-big {
  color: var(--bronze);
  filter: drop-shadow(0 0 34px rgba(199, 169, 122, 0.28));
  opacity: 0; transform: scale(0.92);
  transition: opacity 1s var(--ease-elegant), transform 1s var(--ease-elegant);
}
.seal-big.in-view { opacity: 1; transform: scale(1); }
.seal-big svg { width: 100%; height: auto; max-width: 300px; }
.seal-big svg circle { stroke-width: 1; }

.seal-copy h2 { font-family: var(--serif); font-weight: 500; font-size: var(--fs-h2); line-height: 1.22; color: var(--paper); max-width: 18ch; margin: 0 0 22px; }
.seal-body { color: var(--paper-dim); font-size: 16px; line-height: 1.7; max-width: 50ch; margin: 0 0 14px; }
.seal-body:last-of-type { margin-bottom: 0; }

.mark-standard { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--charcoal-line); max-width: 50ch; }
.mark-standard-label {
  display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bronze-soft); margin-bottom: 10px;
}
.mark-standard p { color: var(--paper-dim); font-size: 14.5px; line-height: 1.6; margin: 0; }

@media (max-width: 900px) {
  .seal-section-inner { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .seal-big svg { max-width: 200px; }
}

/* ---------- owners ---------- */

.owners-inner { max-width: 900px; margin: 0 auto; padding: var(--space-section) var(--space-gutter); text-align: left; }
.owners-sub { color: var(--ink-dim); font-size: 16px; line-height: 1.6; max-width: 58ch; margin: 0 0 28px; }

.owners-form { display: flex; gap: 14px; flex-wrap: wrap; max-width: 680px; }
.owners-form input,
.owners-form select {
  flex: 1; min-width: 200px;
  background: var(--ivory);
  border: 1px solid var(--stone-line);
  color: var(--ink);
  padding: 15px 16px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 14.5px;
}
.owners-form select { flex-basis: 220px; cursor: pointer; }
/* The visible labels are hidden for sighted users, so the placeholder is the
   only on-screen indication of each field and has to stay readable. */
.owners-form input::placeholder { color: var(--ink-dim); }
.owners-form input:focus, .owners-form select:focus {
  outline: none; border-color: var(--bronze-line); box-shadow: 0 0 0 3px var(--bronze-glow);
}
.owners-form .btn-dark { flex-basis: 100%; margin-top: 4px; text-align: center; }

.owners-footnote { margin-top: 14px; color: var(--ink-dim); font-size: 13px; line-height: 1.5; max-width: 58ch; }

.owners-note { margin-top: 10px; color: var(--bronze-deep); font-size: 14px; min-height: 1.2em; }

@media (max-width: 560px) { .owners-form .btn-dark { flex-basis: auto; width: 100%; } }

/* ---------- footer ----------
   Canonical footer for index.html and about.html. about.css overrides its
   text color for a documented contrast reason on that page; the base rule
   here is otherwise the single source. */

.footer-light {
  background: var(--ivory);
  border-top: 1px solid var(--stone-line);
  padding: 40px var(--space-gutter) 54px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink-dim); font-size: 13px;
}
.footer-light .footer-mark { font-family: var(--serif); letter-spacing: 0.18em; color: var(--ink-dim); }

/* The public contact address, in the footer and in the lead form footnote.
   base.css strips link affordance site wide (a { color: inherit;
   text-decoration: none }), which is right for nav and card links but leaves
   the address inside the footnote sentence indistinguishable from the text
   around it. A hairline underline restores that affordance without adding a
   colour that is not already in the palette. */
.footer-light a[href^="mailto:"],
.owners-footnote a[href^="mailto:"] {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@media (max-width: 560px) {
  .footer-light { flex-direction: column; gap: 10px; text-align: center; }
}
