@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --emerald-950: #031f19;
  --emerald-900: #063f32;
  --emerald-700: #0b6e4f;
  --emerald-500: #20a574;
  --gold: #c7a24b;
  --gold-light: #e5cf8a;
  --ink: #09100e;
  --white: #ffffff;
  --muted: #cfd9d5;
  --panel: rgba(5, 32, 25, 0.78);
  --border: rgba(229, 207, 138, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(32, 165, 116, 0.20), transparent 32%),
    radial-gradient(circle at 85% 85%, rgba(199, 162, 75, 0.13), transparent 28%),
    linear-gradient(145deg, #020706 0%, var(--emerald-950) 52%, #020706 100%);
  font-family: "Inter", Arial, sans-serif;
}

.site-shell {
  min-height: calc(100vh - 160px);
  display: grid;
  place-items: center;
  padding: 48px 20px 28px;
}

.hero {
  position: relative;
  width: min(1040px, 100%);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent 22%),
    var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(229, 207, 138, 0.05), transparent);
}

.content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 50px 42px 46px;
  text-align: center;
}

.logo {
  display: block;
  width: clamp(150px, 23vw, 230px);
  height: auto;
  margin: 0 auto 22px;
  border-radius: 50%;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.45));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.55rem, 7vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.tagline {
  margin: 16px 0 0;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.divider {
  width: 90px;
  height: 2px;
  margin: 30px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.25rem, 3.8vw, 2rem);
  font-weight: 600;
}

.intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.status-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 28px auto 18px;
  padding: 11px 16px;
  border: 1px solid rgba(32, 165, 116, 0.45);
  border-radius: 999px;
  background: rgba(32, 165, 116, 0.10);
  color: #dff8ee;
  font-size: 0.92rem;
  font-weight: 600;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 0 5px rgba(32, 165, 116, 0.14);
}

.notice {
  max-width: 680px;
  margin: 0 auto 28px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.035);
  color: #d7dfdc;
  font-size: 0.88rem;
  line-height: 1.6;
  text-align: left;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto 28px;
}

.service-item {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  color: #eef4f1;
  font-size: 0.92rem;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 125px;
  padding: 12px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--ink);
  outline: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.26;
}

.glow-one {
  width: 280px;
  height: 280px;
  top: -150px;
  right: -80px;
  background: radial-gradient(circle, var(--emerald-500), transparent 68%);
}

.glow-two {
  width: 220px;
  height: 220px;
  left: -110px;
  bottom: -120px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
}

footer {
  padding: 22px 20px 36px;
  color: #b9c5c1;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.5;
}

footer p {
  margin: 3px 0;
}

footer strong {
  color: var(--gold-light);
}

.copyright {
  margin-top: 8px;
  color: #84938e;
}

@media (max-width: 640px) {
  .site-shell {
    padding: 18px 12px;
  }

  .hero {
    border-radius: 20px;
  }

  .content {
    padding: 34px 20px 32px;
  }

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

  .notice {
    text-align: center;
  }
}
