:root {
  --bg: #14110e;
  --bg-2: #1c1814;
  --ink: #f1e6d6;
  --muted: #b3a594;
  --line: rgba(241, 230, 214, 0.12);
  --card: #221c17;
  --accent: #d4783a;
  --radius: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  background:
    radial-gradient(900px 520px at 8% -8%, rgba(212, 120, 58, 0.16), transparent 55%),
    radial-gradient(800px 500px at 100% 0%, rgba(72, 58, 42, 0.55), transparent 50%),
    var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 24px 48px;
}

.top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.85fr);
  gap: 48px;
  align-items: center;
  padding: 56px 0 28px;
}

.copy {
  min-width: 0;
}

.hello {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(3rem, 8vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.role {
  margin: 16px 0 0;
  font-size: 1.2rem;
  color: var(--ink);
}

.meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.bio {
  max-width: 38rem;
  margin: 26px 0 0;
  font-size: 1.12rem;
  color: #d8ccbc;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(34, 28, 23, 0.7);
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.link:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
}

.link.primary {
  background: var(--accent);
  border-color: transparent;
  color: #1a120c;
}

.link.primary:hover {
  background: color-mix(in srgb, var(--accent) 88%, #fff);
}

.portrait {
  margin: 0;
}

.portrait img {
  width: 100%;
  height: min(72vh, 640px);
  object-fit: cover;
  object-position: center 20%;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.life {
  padding-top: 28px;
}

.life h2 {
  margin: 0 0 18px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}

.gallery figure {
  margin: 0;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery .wide {
  grid-column: 1 / -1;
}

.gallery .ticket img {
  background: #2a1840;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.foot p {
  margin: 0;
}

.foot a {
  color: var(--ink);
  text-decoration: none;
}

.foot a:hover {
  color: var(--accent);
}

@media (max-width: 860px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
  }

  .portrait {
    order: -1;
  }

  .portrait img {
    height: 62vh;
  }

  .gallery {
    grid-template-columns: 1fr;
  }


}
