:root {
  --bg-top: #f8efe4;
  --bg-bottom: #f4f7ee;
  --panel: rgba(255, 252, 247, 0.82);
  --panel-border: rgba(120, 92, 61, 0.12);
  --text: #2f241c;
  --muted: #6e5a48;
  --accent: #b96f3d;
  --shadow: 0 24px 80px rgba(67, 48, 27, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), transparent 38%),
    linear-gradient(145deg, var(--bg-top), var(--bg-bottom));
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 26rem;
  height: 26rem;
  top: -8rem;
  right: -8rem;
  background: rgba(227, 181, 122, 0.24);
}

body::after {
  width: 18rem;
  height: 18rem;
  bottom: 3rem;
  left: -4rem;
  background: rgba(138, 167, 121, 0.18);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 32px 0;
  min-height: 100vh;
  display: grid;
  align-content: center;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  padding: clamp(28px, 4vw, 56px);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.lead {
  margin: 24px 0 0;
  max-width: 32rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--muted);
}

.body-copy {
  margin: 20px 0 0;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.image-frame {
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, #f6d5b2, #f7eddc);
  border: 1px solid rgba(120, 92, 61, 0.1);
  box-shadow: 0 18px 50px rgba(95, 69, 46, 0.16);
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.caption {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: right;
}

.legal-shell {
  align-content: start;
  padding-top: 28px;
  padding-bottom: 28px;
}

.legal-card {
  width: 100%;
  padding: clamp(28px, 4vw, 48px);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.legal-copy {
  margin-top: 28px;
  color: var(--muted);
}

.legal-copy h2 {
  margin: 28px 0 10px;
  color: var(--text);
  font-size: 1.05rem;
}

.legal-copy p {
  margin: 0;
  max-width: 52rem;
  line-height: 1.8;
}

.legal-copy a {
  color: var(--accent);
}

.site-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 18px 8px 4px;
  color: var(--muted);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.site-footer a[aria-current="page"] {
  color: var(--accent);
}

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

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .caption {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1rem, 100%);
    padding: 12px 0;
  }

  .hero {
    padding: 22px;
    border-radius: 24px;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }
}
