:root {
  --background: #f6efe8;
  --card: rgba(255, 255, 255, 0.88);
  --text: #241b17;
  --muted: #7a6258;
  --accent: #9d5f44;
  --accent-dark: #6f3f2d;
  --shadow: 0 24px 70px rgba(70, 45, 32, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-size: 16px;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 34rem),
    linear-gradient(135deg, #f9f3ed 0%, var(--background) 45%, #ead7ca 100%);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.page-shell {
  width: min(100%, 980px);
}

.card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.9fr);
  align-items: stretch;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.image-wrap {
  min-height: 100%;
  background: #ddd1c8;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(2rem, 6vw, 4.5rem);
}

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

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.intro {
  max-width: 34rem;
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: var(--accent);
}

a:focus-visible {
  outline: 3px solid rgba(157, 95, 68, 0.35);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 760px) {
  body {
    align-items: start;
    padding: 0;
  }

  .page-shell {
    width: 100%;
  }

  .card {
    min-height: 100vh;
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 0;
  }

  .image-wrap img {
    min-height: auto;
    height: clamp(260px, 58vw, 430px);
  }

  .content {
    justify-content: start;
    padding: clamp(1.5rem, 8vw, 2.5rem);
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(2.25rem, 14vw, 3.7rem);
  }

  .intro {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  a {
    transition: color 160ms ease;
  }
}
