/* =========================================================
   Vaaani — secondary pages (About, Contact)
   Inherits design tokens from style.css.
   ========================================================= */

.page {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  min-height: 70vh;
  background:
    radial-gradient(ellipse 1100px 500px at 50% 0%, rgba(77,105,78,0.06), transparent 65%),
    var(--c-bg);
}

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--c-muted-strong);
  padding: 8px 14px; border-radius: 6px;
  border: 1px solid var(--c-border); background: var(--c-surface);
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
  margin-bottom: 32px;
}
.back-link:hover { border-color: var(--c-border-strong); color: var(--c-text); }

.page-hero { max-width: 820px; margin: 0 auto 80px; }
.page-hero .eyebrow { margin-bottom: 24px; }
.page-title {
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.02;
  margin-bottom: 32px;
}
.page-title .line { display: block; overflow: hidden; }
.page-title .line > span { display: inline-block; }
.page-title .accent-text { color: var(--c-accent); }
.page-hero .lede {
  font-size: 17px; color: var(--c-muted-strong); line-height: 1.7;
  max-width: 700px; margin-bottom: 18px;
}
.page-hero .lede strong { color: var(--c-text); font-weight: 600; }
.page-hero .lede:last-of-type { margin-bottom: 0; }

/* =========================================================
   ABOUT — lens cards
   ========================================================= */
.lens-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1080px; margin: 0 auto 80px;
}
.lens-card {
  padding: 36px 28px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 12px;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.lens-card:hover { border-color: var(--c-border-strong); transform: translateY(-3px); }
.lens-num {
  display: inline-block; font-family: var(--font-serif); font-style: italic;
  font-size: 26px; color: var(--c-accent); margin-bottom: 18px;
}
.lens-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; letter-spacing: -0.015em; }
.lens-card p { font-size: 14px; color: var(--c-muted-strong); line-height: 1.65; }

/* =========================================================
   ABOUT — pull-quote
   ========================================================= */
.quote-block {
  max-width: 820px; margin: 0 auto 80px;
  text-align: center; padding: 60px 32px;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.quote-block blockquote { font-size: clamp(22px, 2.6vw, 30px); font-weight: 500; letter-spacing: -0.015em; line-height: 1.4; color: var(--c-text); }
.quote-block .accent-text { color: var(--c-accent); }
.quote-block footer { font-size: 13px; color: var(--c-muted); margin-top: 22px; letter-spacing: 0.06em; }

/* =========================================================
   CONTACT — grid
   ========================================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px;
  max-width: 1080px; margin: 0 auto 80px;
}
.contact-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 14px; padding: 34px 32px;
  display: flex; flex-direction: column; gap: 26px;
}
.contact-block { display: flex; flex-direction: column; gap: 8px; }
.contact-label {
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-muted); font-weight: 600;
}
.contact-block address {
  font-style: normal; line-height: 1.7; font-size: 14.5px; color: var(--c-text);
}
.contact-block address strong { color: var(--c-text); font-weight: 600; }
.contact-link {
  font-size: 15px; color: var(--c-accent-soft); font-weight: 500;
  display: inline-block; transition: color 0.2s var(--ease-out);
  align-self: flex-start;
}
.contact-link:hover { color: var(--c-accent); }
.contact-link .link-tag { color: var(--c-muted); font-size: 13px; font-weight: 400; margin-left: 4px; }
.contact-text { font-size: 14px; color: var(--c-muted-strong); line-height: 1.6; }

.map-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
}
.map-card iframe {
  width: 100%; height: 420px; border: 0; display: block;
  /* Tone the map down so it sits in the dark theme rather than glowing white. */
  filter: invert(0.92) hue-rotate(180deg) brightness(0.94) saturate(0.7);
}
.map-caption {
  padding: 14px 20px; font-size: 11px; letter-spacing: 0.06em;
  color: var(--c-muted); text-transform: uppercase;
  border-top: 1px solid var(--c-border);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.map-caption a { color: var(--c-accent-soft); }
.map-caption a:hover { color: var(--c-accent); }

/* =========================================================
   Shared CTA strip
   ========================================================= */
.cta-strip {
  max-width: 1080px; margin: 0 auto 40px;
  background:
    radial-gradient(ellipse 700px 300px at 50% 50%, rgba(77,105,78,0.08), transparent 70%),
    var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 60px 32px;
  text-align: center;
}
.cta-content h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-content p { color: var(--c-muted-strong); font-size: 15px; margin-bottom: 26px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .lens-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-card iframe { height: 320px; }
  .page-hero { margin-bottom: 56px; }
}
@media (max-width: 600px) {
  .page { padding-top: calc(var(--nav-h) + 30px); }
  .contact-card { padding: 26px 22px; }
  .map-caption { font-size: 10px; }
  .cta-strip { padding: 40px 22px; }
}
