/* ===========================================================================
   About Tina Page — page-specific styles
   Depends on css/styles.css for tokens and shared components.
=========================================================================== */

/* ---------- Hero ---------- */
.about-hero{ padding:60px 0 70px; overflow:hidden; }
.about-hero .container{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:56px;
  align-items:center;
}
.about-hero-title{
  font-size:clamp(30px,4vw,46px);
  text-transform:uppercase;
  line-height:1.18;
}
.about-hero-copy p{
  color:var(--text-muted);
  font-size:16px;
  max-width:520px;
  margin:22px 0 30px;
}
.about-hero-buttons{ display:flex; gap:16px; flex-wrap:wrap; }

.about-hero-art{ position:relative; }
.about-hero-art .frame{
  border-radius:50%;
  overflow:hidden;
  aspect-ratio:1/1;
  max-width:420px;
  margin:0 auto;
  background:radial-gradient(closest-side, rgba(31,154,148,0.16), transparent 72%);
  display:flex;
  align-items:center;
  justify-content:center;
}
.about-hero-art img{ width:78%; }

@media (max-width:980px){
  .about-hero .container{ grid-template-columns:1fr; }
  .about-hero-art{ order:-1; max-width:280px; margin:0 auto; }
  .about-hero-copy p{ max-width:none; }
}
@media (max-width:560px){
  .about-hero-buttons .btn{ width:100%; }
}

/* ---------- Philosophy ---------- */
.philosophy{ background:var(--bg-dark); }
.philosophy .container{ max-width:820px; }
.philosophy-intro{ color:var(--text-muted); font-size:16.5px; margin-bottom:26px; }

.philosophy-close{ color:var(--text-muted); font-size:16.5px; margin-bottom:36px; }

blockquote.pull-quote{
  border-left:2px solid var(--gold);
  padding-left:26px;
  margin:0;
}
blockquote.pull-quote p{
  font-family:var(--font-serif);
  font-style:italic;
  font-size:clamp(21px,2.6vw,28px);
  color:var(--white);
  line-height:1.4;
}
blockquote.pull-quote cite{
  display:block;
  margin-top:14px;
  font-style:normal;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold);
}

/* ---------- Topic cards ---------- */
.topics{ background:var(--ivory); color:var(--ink); }
.topics-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  margin-top:20px;
}
.topic-card{
  background:var(--ivory-card);
  border:1px solid var(--border-ivory);
  border-radius:var(--radius-md);
  padding:32px 28px;
}
.topic-card h3{
  font-size:15px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:10px;
}
.topic-card p{ font-size:14px; color:var(--ink-soft); }

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

/* ---------- Approach ---------- */
.approach{ background:var(--ivory); color:var(--ink); padding-top:0; }
.approach .container{ max-width:780px; }
.approach-intro{ color:var(--ink-soft); font-size:16px; margin-bottom:10px; }
.approach-lede{ font-size:15px; color:var(--ink-soft); margin-bottom:24px; font-weight:600; }

/* ---------- Current Book ---------- */
.current-book{ background:var(--bg-dark); }
.current-book .container{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:56px;
  align-items:center;
}
.current-book-art img{
  width:100%;
  max-width:340px;
  border-radius:var(--radius-md);
  box-shadow:0 26px 60px rgba(0,0,0,0.5);
  margin:0 auto;
}
.book-feature-title{
  font-family:var(--font-serif);
  font-weight:700;
  font-size:clamp(22px,2.6vw,28px);
  color:var(--white);
  margin-bottom:8px;
}
.book-feature-subtitle{
  color:var(--gold-light);
  font-size:14.5px;
  font-style:italic;
  font-family:var(--font-serif);
  margin-bottom:18px;
}
.book-feature-desc{ color:var(--text-muted); font-size:15.5px; margin-bottom:28px; max-width:60ch; }
.book-feature-actions{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }

@media (max-width:900px){
  .current-book .container{ grid-template-columns:1fr; text-align:center; }
  .current-book-art{ order:-1; }
  .book-feature-desc{ margin-left:auto; margin-right:auto; }
  .book-feature-actions{ justify-content:center; }
}

/* ---------- Author Message ---------- */
.author-message{
  background:var(--bg-dark-2);
  border-top:1px solid var(--border-dark);
  border-bottom:1px solid var(--border-dark);
}
.author-message .container{ max-width:720px; }
.author-message p{
  font-family:var(--font-serif);
  font-size:clamp(17px,2vw,20px);
  line-height:1.7;
  color:var(--white);
  margin-bottom:22px;
}
.author-message .signature{
  font-style:italic;
  color:var(--gold);
  font-size:16px;
  margin-top:10px;
}

/* ---------- NEKVI Connection ---------- */
.nekvi-connect{ background:var(--ivory); color:var(--ink); }
.nekvi-connect .container{
  display:grid;
  grid-template-columns:1fr auto;
  gap:40px;
  align-items:center;
}
.nekvi-connect p{ color:var(--ink-soft); font-size:15.5px; max-width:60ch; margin:16px 0 24px; }
.nekvi-connect-logo img{ width:150px; }

@media (max-width:820px){
  .nekvi-connect .container{ grid-template-columns:1fr; text-align:center; }
  .nekvi-connect-logo{ margin:0 auto; }
  .nekvi-connect p{ margin-left:auto; margin-right:auto; }
}

/* Email signup band component now lives in styles.css (shared across pages). */

/* Disclaimer component now lives in styles.css (shared across pages). */
