:root {
  --green-dark: #0f2f25;
  --green: #164638;
  --green-soft: #e8f0ec;
  --gold: #c5a45d;
  --gold-soft: #f7f1e3;
  --text: #1e2825;
  --muted: #63716b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(197, 164, 93, 0.18), transparent 32rem),
    linear-gradient(135deg, #f7f4ed 0%, #eef4f0 100%);
  color: var(--text);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero {
  width: 100%;
  max-width: 920px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 47, 37, 0.08);
  border-radius: 32px;
  padding: 4rem 3rem;
  box-shadow: 0 24px 80px rgba(15, 47, 37, 0.12);
  backdrop-filter: blur(16px);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.symbol {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  border: 2px solid rgba(197, 164, 93, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 36px rgba(15, 47, 37, 0.2);
}

.symbol span {
  width: 36px;
  height: 52px;
  border: 3px solid var(--gold);
  border-bottom: none;
  border-radius: 36px 36px 0 0;
  display: block;
  position: relative;
}

.symbol span::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 52px;
  height: 3px;
  transform: translateX(-50%);
  background: var(--gold);
  border-radius: 999px;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.05;
  color: var(--green-dark);
  letter-spacing: -0.05em;
}

.subtitle {
  max-width: 720px;
  margin: 1.5rem auto 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.75;
  color: var(--muted);
}

.card {
  max-width: 760px;
  margin: 2.4rem auto 0;
  padding: 1.5rem 1.8rem;
  background: var(--green-soft);
  border-left: 4px solid var(--gold);
  border-radius: 20px;
  text-align: left;
}

.card p {
  margin: 0;
  line-height: 1.8;
  color: var(--green-dark);
  font-size: 1rem;
}

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

.info-grid div {
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid rgba(15, 47, 37, 0.08);
  border-radius: 18px;
}

.info-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green-dark);
  font-size: 0.9rem;
}

.info-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact {
  margin: 2.3rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}

@media (max-width: 760px) {
  .page {
    padding: 1rem;
  }

  .hero {
    padding: 2.5rem 1.4rem;
    border-radius: 24px;
  }

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

  .card {
    text-align: center;
  }
}
