:root {
  --background: #efe4d5;
  --card: #fffaf3;
  --ink: #3f322b;
  --muted: #76675e;
  --accent: #b37b62;
  --accent-dark: #81523f;
  --ring: rgba(129, 82, 63, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--background);
  color: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 250, 243, 0.95), transparent 34rem),
    linear-gradient(135deg, #efe4d5 0%, #f8efe4 45%, #dcc7b4 100%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.hero-card {
  width: min(100%, 44rem);
  padding: clamp(2rem, 6vw, 4.5rem);
  text-align: center;
  background: rgba(255, 250, 243, 0.86);
  border: 1px solid rgba(129, 82, 63, 0.14);
  border-radius: 2rem;
  box-shadow: 0 2rem 6rem rgba(63, 50, 43, 0.16);
  backdrop-filter: blur(10px);
}

.logo-wrap {
  width: 7.25rem;
  height: 7.25rem;
  margin: 0 auto 1.5rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: #fffdf8;
  box-shadow: 0 0 0 0.75rem var(--ring);
}

.logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-dark);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 12vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.intro {
  max-width: 34rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  line-height: 1.6;
}

.cta-panel {
  display: grid;
  gap: 1rem;
  justify-items: center;
  margin: 2rem auto 0;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: rgba(239, 228, 213, 0.62);
}

.cta-panel p {
  margin: 0;
  color: var(--ink);
  font-family: Arial, sans-serif;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fffaf3;
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:focus,
.button:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
}
