:root {
  --paper: #f7f0e7;
  --ink: #2d2a26;
  --muted: #756f67;
  --line: rgba(45, 42, 38, 0.14);
  --accent: #a96552;
  --card: #efe4d7;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(255,255,255,.78), transparent 34rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 64px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.copy {
  max-width: 520px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 9vw, 8.4rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .82;
}

h1 span {
  color: var(--accent);
  font-style: italic;
}

.intro {
  max-width: 410px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

.tiny-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .83rem;
  letter-spacing: .04em;
}

.tiny-note span:first-child {
  color: var(--accent);
  font-size: .8rem;
}

.photo-card {
  position: relative;
  margin: 0;
  padding: 14px;
  background: rgba(255,255,255,.34);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 34px;
  box-shadow: 0 24px 80px rgba(84, 62, 43, .12);
  transform: rotate(1.2deg);
}

.photo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  background: var(--card);
}

.photo-card figcaption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  padding: 10px 14px;
  color: rgba(45,42,38,.72);
  background: rgba(247,240,231,.84);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: .74rem;
  letter-spacing: .02em;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 28px, 620px);
    padding: 48px 0 36px;
    align-items: start;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .copy {
    padding-top: 14px;
  }

  h1 {
    font-size: clamp(4.3rem, 21vw, 7rem);
  }

  .intro {
    margin-top: 26px;
  }

  .tiny-note {
    margin-top: 34px;
  }

  .photo-card {
    border-radius: 28px;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
  }
}
