:root {
  --bg: #fff8ef;
  --surface: rgba(255, 251, 244, 0.74);
  --surface-strong: #211616;
  --text: #241615;
  --muted: #6d524b;
  --accent: #d14d2f;
  --accent-strong: #ac2d1d;
  --accent-soft: #ffd369;
  --line: rgba(36, 22, 21, 0.1);
  --shadow: 0 24px 70px rgba(76, 31, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 211, 105, 0.45), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(209, 77, 47, 0.18), transparent 22%),
    linear-gradient(180deg, #fff9ef 0%, #fff0dc 44%, #ffe2c9 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  top: -140px;
  left: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 211, 105, 0.48) 0%, rgba(255, 211, 105, 0) 68%);
}

.page-shell::after {
  right: -120px;
  top: 180px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 77, 47, 0.2) 0%, rgba(209, 77, 47, 0) 70%);
}

.hero,
.section {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero {
  padding: 20px 0 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.brand,
.nav-links a,
.eyebrow,
h1,
h2,
h3 {
  font-family: "DM Serif Display", serif;
  letter-spacing: 0.01em;
}

.brand {
  font-size: 2.1rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  font-size: 1rem;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: end;
}

.hero-copy,
.hero-card,
.panel,
.credit-card,
.media-feature,
.gallery-card,
.contact-card {
  backdrop-filter: blur(14px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 40px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 211, 105, 0.18) 0%, rgba(255, 211, 105, 0) 72%);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h1 {
  margin: 0;
  font-size: clamp(3.8rem, 10vw, 7rem);
  line-height: 0.98;
}

.intro {
  max-width: 38rem;
  margin: 18px 0 0;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(172, 45, 29, 0.2);
}

.button-primary {
  color: #fff7f1;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-notes li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card {
  border-radius: 32px;
  overflow: hidden;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 0.84;
  overflow: hidden;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(63, 20, 13, 0.3) 100%),
    radial-gradient(circle at 50% 10%, rgba(255, 211, 105, 0.28), rgba(255, 211, 105, 0) 35%);
}

.portrait-frame img {
  height: 100%;
  object-fit: cover;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(34, 20, 19, 0.96), rgba(82, 29, 19, 0.92));
  color: #f6efe7;
}

.stat-label,
.credit-year,
.media-label,
.contact-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(246, 239, 231, 0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section {
  padding: 40px 0 24px;
}

.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 26px;
}

h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1;
}

.about-layout,
.media-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-text {
  margin: 0;
  padding: 10px 4px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--muted);
}

.about-panels {
  display: grid;
  gap: 18px;
}

.panel,
.media-feature,
.contact-card {
  padding: 24px;
  border-radius: 24px;
}

.panel h3,
.credit-card h3,
.media-feature h3 {
  margin: 0 0 8px;
  font-size: 1.85rem;
}

.panel p,
.media-feature p,
.credit-card p,
.contact-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.credits-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.credit-card {
  padding: 22px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.credit-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}

.credit-year,
.media-label,
.contact-label {
  color: var(--accent);
}

.credit-card span:last-child {
  display: inline-block;
  margin-top: 12px;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  border-radius: 24px;
  overflow: hidden;
  min-height: 220px;
}

.gallery-card:first-child {
  grid-row: span 2;
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-card a {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .about-layout,
  .media-layout,
  .credits-list,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .gallery-card:first-child {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 16px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy {
    padding: 28px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 5.2rem);
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }
}
