:root {
  --bg: #f4f1eb;
  --panel: rgba(255, 255, 255, 0.85);
  --text: #1d1d1d;
  --muted: #4d4d4d;
  --accent: #2d2d2d;
  --shadow: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.page-shell {
  width: min(1100px, 100%);
  background: var(--panel);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 22px 60px var(--shadow);
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: 2rem;
  padding: 2rem;
}

.content-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: lowercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-size: 0.8rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.75rem, 4vw, 5rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.06em;
  color: var(--accent);
}

.intro,
.contact {
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--muted);
}

.links {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--text);
}

.links a {
  color: var(--text);
  text-decoration: underline;
}

.links span {
  margin: 0 0.45rem;
  color: var(--muted);
}

.contact {
  color: var(--text);
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #ddd;
  border: 1px solid rgba(0, 0, 0, 0.08);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #e0ddd8, #d8d2ca);
}

@media (max-width: 800px) {
  body {
    padding: 1rem;
  }

  .page-shell {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .image-frame,
  #hero-image {
    min-height: 280px;
  }
}
