:root {
  --green: #315c45;
  --green-dark: #244536;
  --gold: #c7a34b;
  --cream: #f7f3e9;
  --text: #24312a;
  --muted: #68736d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(30, 54, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 163, 75, 0.18), transparent 34rem),
    linear-gradient(135deg, #eef3ee 0%, var(--cream) 100%);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 36px 18px;
}

.card {
  width: min(1080px, 100%);
  padding: clamp(28px, 5vw, 68px);
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(49, 92, 69, 0.14);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin: 0 auto;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
}

.intro {
  max-width: 800px;
  margin: 24px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.identity-transition {
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  align-items: center;
  gap: 24px;
  margin: 46px 0;
}

.logo-panel {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 26px;
  border-radius: 22px;
  background: #fbfcfb;
  border: 1px solid rgba(49, 92, 69, 0.13);
}

.logo-panel.new {
  background: linear-gradient(145deg, #f4f8f4, #fffaf0);
  border-color: rgba(199, 163, 75, 0.36);
}

.logo-panel img {
  width: min(270px, 100%);
  height: 185px;
  object-fit: contain;
  margin: 18px 0;
}

.logo-panel p {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.label {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(49, 92, 69, 0.09);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.arrow span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.message {
  max-width: 790px;
  margin: 14px auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.button {
  display: inline-block;
  margin-top: 28px;
  padding: 17px 30px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(49, 92, 69, 0.24);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 16px 34px rgba(49, 92, 69, 0.3);
}

.url {
  margin: 13px 0 0;
  color: var(--green);
  font-weight: 700;
}

footer {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(49, 92, 69, 0.12);
  color: var(--muted);
  font-size: 0.95rem;
}

footer p {
  margin: 0;
}

@media (max-width: 780px) {
  .identity-transition {
    grid-template-columns: 1fr;
  }

  .arrow {
    transform: rotate(90deg);
    margin: -4px 0;
  }

  .logo-panel {
    min-height: 260px;
  }
}
