:root {
  --parchment: #f6efe3;
  --charcoal: #1f2526;
  --burgundy: #5a1218;
  --gold: #c29a45;
  --beige: #d8c7a8;
  --olive: #4f5a3a;
  --card: #fbf6ec;
  --muted: #61584c;
  --shadow: 0 1.5rem 4rem rgba(31, 37, 38, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  color-scheme: light;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  background:
    radial-gradient(circle at top, rgba(194, 154, 69, 0.12), transparent 22rem),
    linear-gradient(180deg, #fff8ed 0%, var(--parchment) 48%, #efe3d0 100%);
  color: var(--charcoal);
  font-family: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(90, 18, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 18, 24, 0.03) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.page-shell {
  width: min(100%, 52rem);
  margin: 0 auto;
  padding: clamp(2rem, 7vw, 6rem) 1.25rem;
  display: grid;
  place-items: center;
}

.domain-card {
  position: relative;
  width: 100%;
  padding: clamp(2rem, 7vw, 4.75rem);
  border: 1px solid var(--beige);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 42%),
    var(--card);
  box-shadow: var(--shadow);
  text-align: center;
}

.language-link {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.8rem;
  border: 1px solid var(--beige);
  border-radius: 999px;
  background: rgba(246, 239, 227, 0.74);
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.language-link:hover,
.language-link:focus-visible {
  border-color: var(--gold);
  background: var(--olive);
  color: #fff8ed;
  outline: none;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-logo {
  width: min(17rem, 68vw);
  height: auto;
  margin: 0 auto 1.3rem;
  display: block;
  border-radius: 50%;
  filter: drop-shadow(0 0.85rem 1.4rem rgba(90, 18, 24, 0.1));
}

h1 {
  margin: 0;
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2.7rem, 8vw, 5.4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
}

.subheadline {
  margin: 1.15rem 0 0;
  color: var(--charcoal);
  font-size: clamp(1.12rem, 2.5vw, 1.45rem);
  font-weight: 700;
}

.gold-divider {
  width: min(12rem, 42vw);
  height: 1px;
  margin: clamp(1.4rem, 4vw, 2rem) auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.copy {
  max-width: 33rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.copy p {
  margin: 0;
}

.copy p + p {
  margin-top: 0.72rem;
}

.copy p:first-child {
  color: var(--charcoal);
  font-weight: 700;
}

.copy p:last-child {
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.22em;
  font-style: italic;
}

.site-footer {
  padding: 0 1.25rem clamp(1.5rem, 4vw, 2.5rem);
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--charcoal);
  font-weight: 800;
}

a {
  color: var(--burgundy);
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: var(--olive);
}

.response h1 {
  font-size: clamp(2.5rem, 8vw, 4.8rem);
}

.response-actions {
  margin: 1.8rem 0 0;
}

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

  .domain-card {
    padding: 4rem 1.25rem 2rem;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .brand-logo {
    width: min(14.5rem, 72vw);
  }
}
