:root {
  --ink: #14241c;
  --ink-soft: #3d5348;
  --muted: #5f7368;
  --paper: #f3f6f2;
  --panel: rgba(255, 255, 255, 0.78);
  --line: rgba(26, 77, 62, 0.14);
  --forest: #1a4d3e;
  --forest-deep: #0f3329;
  --sage: #6f9a82;
  --mist: #d7e6dc;
  --accent: #c46b2a;
  --accent-ink: #8a4514;
  --shadow: 0 18px 50px rgba(20, 36, 28, 0.12);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  position: relative;
  overflow-x: hidden;
}

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--forest-deep);
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 55% at 12% -10%, rgba(111, 154, 130, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 8%, rgba(196, 107, 42, 0.16), transparent 50%),
    linear-gradient(165deg, #eef4ef 0%, #f7f5f0 42%, #e7efe9 100%);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(26, 77, 62, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 77, 62, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 78%);
}

.wrap {
  width: min(1080px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.topbar {
  padding: 1.15rem 0 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.registrar {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.registrar-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--forest), var(--forest-deep));
  color: #f4faf6;
  font-family: var(--font-display);
  font-size: 1rem;
}

.topbar-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.topbar-link:hover {
  color: var(--forest);
  border-bottom-color: var(--sage);
}

.hero {
  min-height: calc(100vh - 4.5rem);
  display: grid;
  align-items: center;
  padding: 3.5rem 0 4rem;
}

.hero-inner {
  max-width: 760px;
  animation: rise 700ms ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.status-pill {
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(196, 107, 42, 0.35);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.85);
  color: var(--accent-ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: fade 900ms ease 120ms both;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.domain {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--forest-deep);
  animation: rise 800ms ease 80ms both;
}

.lede {
  margin: 0 0 1rem;
  max-width: 38rem;
  font-size: clamp(1.08rem, 2.2vw, 1.28rem);
  color: var(--ink-soft);
  animation: rise 850ms ease 140ms both;
}

.owner-note {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  padding: 0.95rem 1.1rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font-size: 1.05rem;
  animation: rise 900ms ease 200ms both;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 950ms ease 260ms both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.25rem;
  border-radius: 0.7rem;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: #f5fbf7;
  box-shadow: 0 10px 24px rgba(15, 51, 41, 0.22);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 51, 41, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest-deep);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  background: #fff;
  color: var(--forest-deep);
}

.details {
  padding: 0 0 4.5rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: 1.45rem 1.5rem 1.55rem;
}

.panel h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--forest-deep);
}

.facts {
  margin: 0;
  display: grid;
  gap: 0.95rem;
}

.facts div {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.facts div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.facts dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.facts dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  align-items: baseline;
}

.contact-list span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list a {
  font-weight: 600;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.address {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  padding: 0 0 2.25rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner a {
  font-weight: 600;
  text-decoration: none;
}

.footer-meta {
  margin: 0;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 760px) {
  .details-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 2.75rem 0 3rem;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
