:root {
  --ivory: #f8f3e8;
  --muted: #c9bcaa;
  --gold: #b8863b;
  --gold-light: #ead69a;
  --line: rgba(234, 214, 154, 0.24);
}

* { box-sizing: border-box; }

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

body {
  color: var(--ivory);
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 22% 18%, rgba(184, 134, 59, 0.22), transparent 28rem),
    radial-gradient(circle at 82% 72%, rgba(234, 214, 154, 0.10), transparent 26rem),
    linear-gradient(135deg, #050505 0%, #11100e 42%, #261f17 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 20px),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.055) 42%, transparent 72%);
  opacity: 0.38;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.58) 88%);
  pointer-events: none;
}

main { min-height: 100vh; }

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.content {
  width: min(1080px, 100%);
  text-align: center;
  padding: clamp(34px, 7vw, 88px);
  border: 1px solid var(--line);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 44px 124px rgba(0,0,0,.45);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 1;
  animation: rise 900ms ease both;
}

.seal {
  width: 82px;
  height: 82px;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(234,214,154,.48);
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 0 44px rgba(184,134,59,.20);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 9vw, 122px);
  line-height: .9;
  font-weight: 500;
  letter-spacing: -.065em;
}

.tagline {
  max-width: 840px;
  margin: 32px auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -.04em;
  color: #fff8e8;
}

.founding {
  margin: 30px auto 0;
  color: var(--gold-light);
  font-size: clamp(19px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -.02em;
}

.summary {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.pillars {
  margin: 34px auto 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.pillars span {
  padding: 11px 14px;
  border: 1px solid rgba(234,214,154,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(248,243,232,.86);
  font-size: 13px;
  font-weight: 700;
}

.actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button, .email {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, border-color .18s ease;
}

.button {
  padding: 15px 22px;
  color: #17110a;
  background: linear-gradient(135deg, #f3df9f, var(--gold));
  border: 1px solid rgba(234,214,154,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
  box-shadow: 0 20px 60px rgba(184,134,59,.24);
}

.email {
  padding: 15px 20px;
  color: var(--ivory);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
}

.button:hover, .email:hover {
  transform: translateY(-2px);
  border-color: rgba(234,214,154,.52);
}

footer {
  margin-top: 42px;
  color: rgba(248,243,232,.58);
  font-size: 13px;
  line-height: 1.7;
}

footer strong {
  display: block;
  color: rgba(248,243,232,.84);
  margin-bottom: 5px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px) scale(.985); }
  to { opacity: 1; transform: none; }
}

@keyframes drift {
  from { transform: translate3d(-20px, -10px, 0) scale(1.02); }
  to { transform: translate3d(20px, 10px, 0) scale(1.04); }
}

@media (max-width: 640px) {
  .hero { padding: 18px; }
  .content { border-radius: 28px; padding: 34px 22px; }
  .seal { width: 66px; height: 66px; font-size: 32px; margin-bottom: 26px; }
  .eyebrow { letter-spacing: .2em; }
  .summary { font-size: 16px; }
  .button, .email { width: 100%; }
}
