:root {
  --green-dark: #34432f;
  --green-mid: #5c7355;
  --green-sage: #8d9b82;
  --green-light: #e7ede4;
  --cream: #faf9f5;
  --ink: #2c3327;
  --white: #ffffff;

  --font-title: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Poppins', 'Helvetica Neue', Arial, sans-serif;

  --radius: 24px;
  --shadow: 0 20px 60px rgba(52, 67, 47, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(circle at 15% 10%, #eef2ea 0%, var(--cream) 45%, #e4ebe0 100%);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  padding: max(24px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

.bg-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(600px circle at 90% -10%, rgba(141, 155, 130, 0.25), transparent 60%),
    radial-gradient(500px circle at -10% 110%, rgba(92, 115, 85, 0.2), transparent 60%);
}

.wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 6vw, 56px) clamp(20px, 5vw, 48px) clamp(24px, 4vw, 40px);
  text-align: center;
  border: 1px solid rgba(141, 155, 130, 0.25);
}

.logo-area {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.logo {
  width: clamp(110px, 28vw, 160px);
  height: auto;
}

.eyebrow {
  font-size: clamp(11px, 3vw, 13px);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--green-mid);
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1 {
  font-family: var(--font-title);
  font-size: clamp(24px, 6vw, 38px);
  line-height: 1.25;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 16px;
  word-wrap: break-word;
}

h1 span {
  color: var(--green-mid);
  font-style: italic;
}

.lead {
  font-size: clamp(14.5px, 3.6vw, 16px);
  line-height: 1.7;
  color: #55604e;
  max-width: 540px;
  margin: 0 auto 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 600;
  font-size: clamp(11.5px, 3vw, 13px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: clamp(28px, 6vw, 40px);
  text-align: center;
  white-space: nowrap;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-mid);
  display: inline-block;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
  text-align: left;
  padding: clamp(20px, 5vw, 28px) 0;
  border-top: 1px solid rgba(141, 155, 130, 0.25);
  border-bottom: 1px solid rgba(141, 155, 130, 0.25);
  margin-bottom: clamp(24px, 5vw, 32px);
}

.info-item h2 {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 6px;
}

.info-item p {
  font-size: clamp(13.5px, 3.4vw, 14.5px);
  line-height: 1.6;
  color: var(--ink);
  word-wrap: break-word;
}

.info-item a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--green-sage);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.info-item a:hover {
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: clamp(24px, 5vw, 32px);
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  background: var(--green-light);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.social-link svg {
  width: 19px;
  height: 19px;
}

.social-link:hover,
.social-link:active {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.footer {
  font-size: 12px;
  color: #8a9382;
  line-height: 1.5;
  padding: 0 4px;
}

@media (max-width: 560px) {
  .info-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  .info-item p a {
    display: inline-block;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 22px;
  }

  .logo {
    width: 100px;
  }
}

@media (max-width: 380px) and (min-width: 361px) {
  .badge {
    white-space: normal;
  }
}
