:root {
  --bg-top: #f6efe6;
  --bg-bottom: #e4c9ba;
  --card: rgba(255, 252, 248, 0.84);
  --text: #34251f;
  --muted: #6b5449;
  --border: rgba(52, 37, 31, 0.1);
  --shadow: 0 24px 60px rgba(80, 49, 36, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.55), transparent 35%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero {
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-copy {
  padding: 20px 12px 20px 8px;
}

.eyebrow,
.label {
  margin: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
}

h1 {
  margin: 14px 0 16px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  font-weight: 600;
}

.intro,
.footer,
.details p:last-child {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 32px 0 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.details div {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
}

.details .label {
  margin-bottom: 8px;
}

.hero-photo {
  margin: 0;
}

.hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(52, 37, 31, 0.18);
}

@media (max-width: 640px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 18px;
  }

  .hero-copy {
    padding: 12px 8px 6px;
  }

  .hero-photo {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-photo img {
    aspect-ratio: 4 / 5;
    max-height: 60vh;
    object-position: center 20%;
  }

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