:root {
  --bg: #f6efe6;
  --bg-soft: rgba(255, 248, 239, 0.72);
  --surface: rgba(255, 252, 247, 0.78);
  --surface-strong: rgba(255, 249, 242, 0.94);
  --ink: #1f1a17;
  --muted: #69594d;
  --line: rgba(79, 57, 39, 0.15);
  --accent: #c95f3f;
  --accent-deep: #8a3520;
  --accent-soft: #f0cfb7;
  --shadow: 0 20px 60px rgba(87, 45, 20, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 95, 63, 0.22), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(234, 190, 125, 0.32), transparent 26%),
    linear-gradient(180deg, #f8f1e8 0%, #f2e5d8 48%, #efe6de 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: 8rem;
  right: -6rem;
  background: rgba(201, 95, 63, 0.12);
}

body::after {
  bottom: 6rem;
  left: -7rem;
  background: rgba(157, 119, 73, 0.16);
}

a {
  color: inherit;
}

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

.page-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.25rem 0 2.5rem;
}

.site-header,
.site-footer,
.section-frame,
.content-card {
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.7);
  box-shadow: var(--shadow);
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  padding: 2.25rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(135deg, rgba(255, 249, 242, 0.9), rgba(251, 241, 233, 0.72)),
    rgba(255, 252, 247, 0.68);
  box-shadow: var(--shadow);
}

.subpage-hero {
  min-height: 22rem;
  align-items: center;
}

.hero-copy h1,
.section-heading h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
  max-width: 10ch;
}

.lede {
  max-width: 55ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.hero-actions,
.resume-layout,
.contact-layout,
.statement-grid,
.awards-grid,
.samples-grid {
  display: grid;
  gap: 1rem;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff9f4;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 14px 34px rgba(138, 53, 32, 0.24);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 244, 233, 0.92);
  border: 1px solid rgba(138, 53, 32, 0.14);
}

.hero-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.headshot-card,
.brand-note,
.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.headshot-card {
  overflow: hidden;
}

.headshot-card p {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
}

.brand-note {
  padding: 1.2rem;
}

.brand-note span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.brand-note strong {
  font-size: 1.05rem;
}

.section-grid {
  margin-top: 1.5rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 14ch;
}

.content-card {
  padding: 1.35rem;
}

.statement-grid,
.resume-layout,
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.statement-card,
.award-card,
.sample-card,
.resume-card,
.timeline-card,
.contact-card {
  min-height: 100%;
}

.statement-card p,
.award-card p,
.sample-card p,
.resume-card p,
.timeline-card li,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.accent-card {
  background:
    linear-gradient(160deg, rgba(201, 95, 63, 0.12), rgba(255, 249, 242, 0.9)),
    var(--surface);
}

.timeline {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.timeline li + li {
  margin-top: 0.9rem;
}

.samples-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sample-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.sample-media {
  display: grid;
  place-items: center;
  min-height: 15rem;
  aspect-ratio: 16 / 10;
  padding: 1.1rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 10%, rgba(201, 95, 63, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 248, 240, 0.96), rgba(235, 210, 190, 0.58));
}

.sample-media img {
  width: 100%;
  height: 100%;
  max-height: 13rem;
  object-fit: contain;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 18px 28px rgba(87, 45, 20, 0.16));
}

.sample-media-phone {
  padding: 0.9rem;
}

.sample-media-phone img {
  max-width: 58%;
  max-height: 14rem;
  border-radius: var(--radius-lg);
}

.sample-content {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  flex: 1;
}

.sample-content .button {
  margin-top: auto;
}

.sample-content h3,
.sample-content p {
  margin: 0;
}

.sample-type {
  margin: 0 0 0.4rem;
  color: var(--accent-deep);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.awards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.awards-grid-five {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.awards-grid-five .award-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
}

.awards-grid-five .award-card:nth-child(-n + 3) {
  grid-column: span 4;
}

.awards-grid-five .award-card:nth-child(n + 4) {
  grid-column: span 6;
}

.award-card h3,
.award-card p {
  margin: 0;
}

.award-card h3 {
  font-size: 1.1rem;
  line-height: 1.35;
}

.award-year {
  display: inline-flex;
  align-self: flex-start;
  min-width: 4.5rem;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(201, 95, 63, 0.12);
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 800;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(79, 57, 39, 0.08);
}

.contact-list li span:first-child {
  color: var(--muted);
}

.spotlight-card {
  background:
    linear-gradient(145deg, rgba(255, 225, 205, 0.9), rgba(255, 249, 242, 0.9)),
    var(--surface-strong);
}

.site-footer {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero,
  .statement-grid,
  .resume-layout,
  .contact-layout,
  .samples-grid,
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .awards-grid-five .award-card:nth-child(n) {
    grid-column: span 12;
  }

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

  .section-heading h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .site-header {
    position: static;
    border-radius: 24px;
    padding: 1rem;
    align-items: start;
    flex-direction: column;
    gap: 0.9rem;
  }

  .site-nav {
    gap: 0.8rem 1rem;
  }

  .hero {
    padding: 1.35rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .contact-list li {
    flex-direction: column;
  }
}
