* { box-sizing: border-box; }

:root {
  --cream: #f7f0df;
  --cream-2: #fffaf0;
  --gold: #b99a42;
  --brown: #6f2f22;
  --brown-dark: #3f1f18;
  --text: #2a211c;
  --muted: #72665b;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(185,154,66,0.24), transparent 34%),
    radial-gradient(circle at bottom right, rgba(111,47,34,0.12), transparent 36%),
    linear-gradient(135deg, var(--cream), var(--cream-2));
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 42px);
}

.card {
  width: min(1120px, 100%);
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(185,154,66,0.38);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 54px);
  box-shadow: 0 24px 70px rgba(63,31,24,0.16);
}

.hero {
  display: grid;
  grid-template-columns: minmax(220px, 36%) 1fr;
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
}

.logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 290px;
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(247,240,223,0.92), rgba(255,250,240,0.78));
  border: 1px solid rgba(185,154,66,0.30);
}

.logo {
  width: min(100%, 340px);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.content { text-align: left; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.84rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 0.96;
  color: var(--brown-dark);
  letter-spacing: -0.04em;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.55;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(111,47,34,0.25);
  color: var(--brown-dark);
  background: var(--white);
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(63,31,24,0.14);
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--brown));
  color: var(--white);
  border: none;
}

.btn.disabled {
  opacity: 0.76;
  pointer-events: none;
}

.status {
  margin: 34px 0 0;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(185,154,66,0.12);
  color: var(--brown-dark);
  font-size: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(185,154,66,0.18);
  flex: 0 0 auto;
}

.info {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.info > div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(185,154,66,0.22);
}

.label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

footer {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  text-align: center;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo-panel {
    min-height: auto;
    padding: 18px;
  }

  .logo {
    width: min(100%, 300px);
  }

  .content { text-align: center; }

  .actions { justify-content: center; }

  .status {
    border-radius: 18px;
    align-items: flex-start;
    text-align: left;
  }

  .info { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .page {
    align-items: flex-start;
    padding: 12px;
  }

  .card {
    border-radius: 20px;
    padding: 20px;
  }

  .logo { width: min(100%, 230px); }

  h1 { font-size: clamp(2rem, 12vw, 3.4rem); }

  .actions { flex-direction: column; }

  .btn { width: 100%; }
}
