* { box-sizing: border-box; }

:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #f4d58a;
}

html, body { margin: 0; min-height: 100%; }
body { min-width: 320px; }

.page {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 40px 24px;
  background:
    radial-gradient(circle at 50% 28%, rgba(205,151,55,.17), transparent 34%),
    linear-gradient(135deg, #050505 0%, #11100e 48%, #050505 100%);
}

.texture {
  position: absolute;
  inset: 0;
  opacity: .4;
  background-image: repeating-linear-gradient(115deg, transparent 0 70px, rgba(206,157,72,.035) 71px, transparent 72px);
}

.ring {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  pointer-events: none;
}

.ring-outer {
  width: min(88vw, 700px);
  aspect-ratio: 1;
  border: 1px solid rgba(201,154,71,.15);
  box-shadow: 0 0 100px rgba(201,154,71,.08);
}

.ring-inner {
  width: min(80vw, 630px);
  aspect-ratio: 1;
  border: 1px solid rgba(240,198,106,.10);
}

.content {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  text-align: center;
  animation: appear .8s ease-out both;
}

.logo {
  display: block;
  width: clamp(190px, 28vw, 265px);
  aspect-ratio: 1;
  margin: 0 auto 32px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 55px rgba(221,171,72,.25);
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 22px;
  color: #d8a94f;
}

.ornament span {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d8a94f);
}
.ornament span:last-child { transform: scaleX(-1); }
.ornament b { font-size: 15px; }

.eyebrow {
  margin: 0 0 16px;
  color: #d8a94f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .38em;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin: 0 auto;
  color: #fff4d6;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.6rem, 7vw, 4.1rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.intro {
  max-width: 590px;
  margin: 24px auto 0;
  color: rgba(232,215,175,.72);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.75;
}

.contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 13px 24px;
  border: 1px solid rgba(216,169,79,.55);
  border-radius: 999px;
  background: rgba(216,169,79,.10);
  color: #f4d58a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: .2s ease;
}

.contact:hover { border-color: #f4d58a; background: rgba(216,169,79,.20); }
.contact:focus-visible { outline: 2px solid #d8a94f; outline-offset: 4px; }
.contact svg { width: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }

.copyright {
  margin: 46px 0 0;
  color: rgba(216,169,79,.45);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

@keyframes appear {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .page { padding: 28px 20px; }
  .logo { margin-bottom: 26px; }
  .copyright { margin-top: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  .content { animation: none; }
  .contact { transition: none; }
}
