:root{
  --bg: #f7f6f2;
  --ink: #1a1a1a;
  --muted: #5f5f5f;
  --card: rgba(255,255,255,.65);
  --border: rgba(26,26,26,.18);
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --radius: 18px;
}

* { box-sizing: border-box; }

body{
  margin:0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(1200px 600px at 50% -120px, rgba(26,26,26,.06), transparent 60%),
    var(--bg);
  color: var(--ink);
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 18px 44px;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 18px 26px;
  backdrop-filter: blur(6px);
}

header{
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

img.logo{
  width: min(280px, 70vw);
  height: auto;
  display:block;
}

.tagline{
  max-width: 58ch;
  margin: 8px auto 0;
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--muted);
}

.links{
  display:flex;
  flex-direction: column;
  gap: 14px;
  margin: 26px auto 0;
  max-width: 520px;
}

a.button{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;

  text-decoration:none;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--ink);
  background: rgba(247,246,242,.55);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

a.button:hover{
  transform: translateY(-1px);
  background: rgba(26,26,26,.06);
  border-color: rgba(26,26,26,.30);
}

a.button:focus{
  outline: 3px solid rgba(26,26,26,.25);
  outline-offset: 3px;
}

.hint{
  font-size: .92rem;
  color: var(--muted);
  opacity: .9;
  white-space: nowrap;
}

/* ---- ABOUT (wider canvas, readable text) ---- */
.about{
  max-width: 1200px;   /* wider so it doesn't feel thin */
  margin: 4rem auto 0;
  padding: 0 2rem;
  text-align: center;
}

.about h2{
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.about-grid{
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(480px, 2fr) minmax(220px, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.about-text{
  max-width: 600px;   /* keep reading column humane */
  margin: 0 auto;
  text-align: left;
}

.about-text p{
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  color: #555;
}

.about-image{
  text-align: center;
}

.about-image img{
  width: 100%;
  height: auto;
  max-width: 240px;
  border-radius: 4px;
}

.about-image.book img{
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.about-image.author img{
  border-radius: 50%;
  max-width: 180px;
}

.about-image figcaption{
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #777;
}

.about-contact{
  margin-top: 1.6rem;
  font-size: 0.95rem;
}

.about-contact a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.3);
}

.about-contact a:hover{
  border-bottom-color: rgba(0,0,0,0.7);
}

footer{
  margin-top: 16px;
  font-size: 0.85rem;
  color: #666;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.footer-links a{
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid rgba(102,102,102,.35);
}
.footer-links a:hover{
  border-bottom-color: rgba(102,102,102,.8);
}

/* Mobile */
@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; }
  .about{ padding: 0 1rem; }
}