* {
  box-sizing: border-box;
}

:root {
  --bg: #f4f1eb;
  --bg-soft: rgba(255, 255, 255, 0.34);
  --text: #3f3a33;
  --muted: #756d61;
  --gold: #b89c63;
  --gold-soft: rgba(184, 156, 99, 0.35);
  --shadow: 0 24px 80px rgba(45, 37, 24, 0.08);
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(184, 156, 99, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(184, 156, 99, 0.11), transparent 26%),
    linear-gradient(180deg, #f7f4ef 0%, #efe9df 100%);
  font-family: "Inter", Arial, sans-serif;
}

.page-shell {
  position: relative;
  width: min(100%, 1180px);
  min-height: min(760px, calc(100vh - 48px));
  padding: 52px;
  background: linear-gradient(180deg, rgba(255,255,255,0.52), rgba(255,255,255,0.28));
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.frame {
  position: absolute;
  background: var(--gold);
  opacity: 0.9;
}

.frame-top,
.frame-bottom {
  left: 26px;
  right: 26px;
  height: 1px;
}

.frame-left,
.frame-right {
  top: 26px;
  bottom: 26px;
  width: 1px;
}

.frame-top { top: 26px; }
.frame-bottom { bottom: 26px; }
.frame-left { left: 26px; }
.frame-right { right: 26px; }

.hero {
  min-height: calc(100vh - 152px);
  min-height: min(656px, calc(100vh - 152px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 40px 20px;
}

.logo-wrap {
  width: min(190px, 36vw);
  margin-bottom: 10px;
  filter: drop-shadow(0 6px 14px rgba(120, 100, 55, 0.08));
}

.logo {
  width: 100%;
  height: auto;
  display: block;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.lead {
  margin: 12px 0 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
}

.sublead {
  margin: 0;
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  color: var(--muted);
}

.divider {
  width: 160px;
  margin-top: 24px;
}

.divider span {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

@media (max-width: 700px) {
  body {
    padding: 14px;
  }

  .page-shell {
    min-height: calc(100vh - 28px);
    padding: 34px 24px;
  }

  .frame-top,
  .frame-bottom {
    left: 14px;
    right: 14px;
  }

  .frame-left,
  .frame-right {
    top: 14px;
    bottom: 14px;
  }

  .frame-top { top: 14px; }
  .frame-bottom { bottom: 14px; }
  .frame-left { left: 14px; }
  .frame-right { right: 14px; }

  .hero {
    min-height: calc(100vh - 96px);
    padding: 28px 8px;
  }

  .eyebrow {
    letter-spacing: 0.24em;
    font-size: 0.68rem;
  }
}
