/* Adriana Ferreyr - adrianaferreyr.com
   Playbill minimalism: Caslon display (the classic theater-poster face),
   Georgia body, azulejo ultramarine links. One column, lots of air. */

:root {
  --paper: #fdfdfc;
  --ink: #1a1a1a;
  --muted: #75716a;
  --accent: #1f3bd1;        /* azulejo blue */
  --accent-visited: #3a2f9e;
  --rule: #e7e5e0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #121214;
    --ink: #e8e6e1;
    --muted: #97928a;
    --accent: #93a5ff;
    --accent-visited: #b3a5f0;
    --rule: #2a2a2e;
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 3.5em 1.4em 5em 8em;
  max-width: 38em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

/* Links: ultramarine, underline lifts on hover */
a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: text-underline-offset 120ms ease;
}
a:visited { color: var(--accent-visited); }
a:hover { text-underline-offset: 4px; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 1px; }
@media (prefers-reduced-motion: reduce) {
  a { transition: none; }
}

/* Small-caps utility voice: nav, eyebrows, footer */
nav, .eyebrow, footer {
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
nav { margin-bottom: 4em; }
nav a { color: var(--muted); text-decoration: none; }
nav a:hover { color: var(--accent); text-underline-offset: 2px; text-decoration: underline; }

.eyebrow { color: var(--muted); margin: 0 0 1.2em; }

/* Display: Libre Caslon - the playbill face */
h1, .masthead {
  font-family: "Libre Caslon Display", "Libre Caslon Text", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}
h1 { font-size: 2rem; line-height: 1.15; margin: 0 0 1.2em; }

.masthead {
  font-size: clamp(2.4rem, 8vw, 3.4rem);
  font-style: italic;
  line-height: 1.05;
  margin: 0 0 0.35em;
}
.tagline { color: var(--muted); margin: 0 0 2.6em; }
.tagline .amp { font-style: italic; font-family: "Libre Caslon Display", Georgia, serif; }

h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-weight: 400;
  font-size: 1.35rem;
  margin: 2.4em 0 0.7em;
}
h3 {
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2em 0 0.5em;
}

p { margin: 0 0 1.1em; }

/* Homepage link list */
.links { list-style: none; padding: 0; margin: 0; }
.links li { margin-bottom: 0.55em; }
.links a { text-decoration: none; border-bottom: 1px solid var(--rule); padding-bottom: 1px; }
.links a:hover { border-bottom-color: var(--accent); }

.filmography { padding-left: 1.2em; margin: 0 0 1em; }
.filmography li { margin-bottom: 0.35em; }
.role { color: var(--muted); }

.press-item { margin: 0 0 0.7em; }
.press-source { color: var(--muted); font-size: 0.88rem; }

/* The Sivan aside */
.aside {
  color: var(--muted);
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 1em;
  margin: -0.2em 0 1.4em;
}

footer {
  margin-top: 4.5em;
  padding-top: 1.4em;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1em;
  flex-wrap: wrap;
}
.portrait {
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 0 1.4em;
  border: 1px solid var(--rule);
}

/* Tighter left margin on small screens */
@media (max-width: 900px) {
  body { padding-left: 4em; }
}
@media (max-width: 600px) {
  body { padding-left: 1.4em; }
}

.bio { max-width: 24em; margin: 0 0 1.6em; }
