/* ============================================================
   Sub-pages: About, Contact, Privacy (warm editorial)
   ============================================================ */

/* ---------- About ---------- */
.about-hero { padding-block: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 3vw, 2.5rem); }
.about-hero .eyebrow { margin-bottom: 1.2rem; }
.about-hero h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); max-width: 16ch; }
.about-hero .lead { margin-top: 1.5rem; max-width: 58ch; font-size: clamp(1.1rem, 2.2vw, 1.35rem); color: var(--ink-soft); }

.story { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.story .sticky { position: sticky; top: 110px; }
.story h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.story .prose > * + * { margin-top: 1.3rem; }
.story .prose p { color: var(--ink-soft); font-size: 1.12rem; }
.story .prose strong { color: var(--ink); font-weight: 600; }
.story .quote {
  font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.35; letter-spacing: -0.02em;
  color: var(--ink); border-left: 3px solid var(--rose); padding-left: 1.4rem; margin: 2rem 0;
  font-weight: 500;
}

/* value cards */
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 1rem; }
.value { background: var(--alabaster); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 1.8rem; }
.value .k { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; color: var(--brass-deep); text-transform: uppercase; }
.value h3 { font-size: 1.3rem; margin-top: 0.6rem; }
.value p { margin-top: 0.6rem; color: var(--ink-soft); font-size: 1rem; }

/* mission / vision split */
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.mv-card { border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.6rem); }
.mv-card.ink { background: var(--ink); color: var(--alabaster); }
.mv-card.ink .k { color: var(--brass); }
.mv-card.ink p { color: rgba(247,245,240,0.78); }
.mv-card.rose { background: var(--rose); color: var(--alabaster); }
.mv-card.rose .k { color: rgba(247,245,240,0.85); }
.mv-card.rose p { color: rgba(247,245,240,0.85); }
.mv-card .k { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; }
.mv-card h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 0.8rem; }
.mv-card p { margin-top: 1rem; font-size: 1.1rem; }

@media (max-width: 820px) {
  .story { grid-template-columns: 1fr; }
  .story .sticky { position: static; }
  .values, .mv { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-card { background: var(--alabaster); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.8rem, 3.5vw, 2.8rem); }
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.4rem; }
.field label { font-weight: 600; font-size: 0.95rem; }
.field label .req { color: var(--rose); }
.field input, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--linen); border: 1px solid var(--line); border-radius: 12px;
  padding: 0.9rem 1rem; transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%; resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(154,59,56,0.12);
}
.field textarea { min-height: 150px; }
.form-card .btn--primary { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-status {
  margin-top: 1.2rem; padding: 0.9rem 1.1rem; border-radius: 12px;
  background: rgba(31,138,62,0.1); border: 1px solid rgba(31,138,62,0.3);
  color: #1c6e34; font-size: 0.95rem; font-weight: 500;
}

.contact-aside h2 { font-size: 1.6rem; }
.contact-aside > p { margin-top: 0.9rem; color: var(--ink-soft); }
.contact-list { list-style: none; margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(154,59,56,0.08); color: var(--rose); display: grid; place-items: center; flex-shrink: 0; }
.contact-item .k { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.contact-item .v { font-weight: 600; margin-top: 0.15rem; }
.contact-item .v.placeholder { color: var(--ink-faint); font-weight: 500; font-style: italic; }
.contact-item .v a { color: var(--rose); transition: color .15s ease; }
.contact-item .v a:hover { color: var(--rose-deep); text-decoration: underline; }
.social-row { list-style: none; display: flex; gap: 0.6rem; margin-top: 0.6rem; padding: 0; }
.social-row a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(154,59,56,0.08); color: var(--rose);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.social-row a:hover { background: var(--rose); color: var(--alabaster); transform: translateY(-2px); }

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

/* ---------- Privacy / legal ---------- */
.legal { display: grid; grid-template-columns: 0.32fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.legal .toc { position: sticky; top: 110px; }
.legal .toc h4 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1rem; }
.legal .toc ol { list-style: none; counter-reset: toc; display: flex; flex-direction: column; gap: 0.55rem; }
.legal .toc li { counter-increment: toc; }
.legal .toc a { font-size: 0.94rem; color: var(--ink-soft); display: flex; gap: 0.6rem; transition: color .15s ease; }
.legal .toc a::before { content: counter(toc, decimal-leading-zero); font-family: var(--mono); font-size: 0.78rem; color: var(--brass-deep); }
.legal .toc a:hover { color: var(--rose); }

.legal-body .effective { font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.06em; color: var(--ink-faint); margin-bottom: 1.5rem; }
.legal-body .intro { font-size: 1.18rem; color: var(--ink-soft); margin-bottom: 2.5rem; }
.legal-section { padding-block: 1.8rem; border-top: 1px solid var(--line); scroll-margin-top: 100px; }
.legal-section h2 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); display: flex; gap: 0.7rem; align-items: baseline; }
.legal-section h2 .num { font-family: var(--mono); font-size: 0.9rem; color: var(--rose); }
.legal-section p { margin-top: 0.9rem; color: var(--ink-soft); }
.legal-section ul { margin-top: 0.9rem; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.legal-section ul li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); }
.legal-section ul li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 7px; height: 7px; border-radius: 2px; background: var(--brass); }
.legal-section strong { color: var(--ink); font-weight: 600; }
.legal-callout { background: var(--alabaster); border: 1px solid var(--line-soft); border-left: 3px solid var(--rose); border-radius: 12px; padding: 1.3rem 1.5rem; margin-top: 1.2rem; }
.legal-callout p { margin-top: 0; color: var(--ink); font-weight: 500; }
.legal-callout a { color: var(--rose); }
.legal-callout a:hover { color: var(--rose-deep); text-decoration: underline; }

@media (max-width: 820px) {
  .legal { grid-template-columns: 1fr; }
  .legal .toc { position: static; display: none; }
}
