:root {
  --bg: #050505;
  --ink: #e8dfc8;
  --gold: #c9a227;
  --gold-soft: #e1c16e;
  --muted: #9a917c;
  --line: rgba(201, 162, 39, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  background: #000;
}

.hero-banner {
  width: 100%;
  max-height: min(70vh, 640px);
  object-fit: cover;
  object-position: center;
  animation: banner-in 1.1s ease-out both;
}

.hero-cta {
  width: min(36rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.25rem 0 2.25rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  animation: rise 0.9s ease-out 0.15s both;
}

.lede {
  margin: 1rem auto 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.cta-row {
  margin: 0;
}

.cta {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--bg);
  background: var(--gold);
  font-family: Cinzel, Georgia, serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.cta:hover {
  background: transparent;
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.about {
  width: min(38rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4.5rem 0 4rem;
  text-align: center;
}

.about h2 {
  margin: 0 0 1rem;
  font-family: Cinzel, Georgia, serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.about p {
  margin: 0;
  color: var(--muted);
  font-size: 1.25rem;
}

.site-footer {
  padding: 3rem 1.25rem 3.5rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-mark {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
}

.footer-brand {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  margin: 1.25rem 0 1rem;
  font-family: Cinzel, Georgia, serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav a {
  text-decoration: none;
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--gold-soft);
}

.footer-note {
  margin: 0;
  color: #6d6656;
  font-size: 0.95rem;
}

.legal-page {
  width: min(42rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3ead2;
}

.legal-page h2 {
  margin-top: 2rem;
  font-family: Cinzel, Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.legal-top a {
  font-family: Cinzel, Georgia, serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

.legal-top img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

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

@keyframes banner-in {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner,
  .hero-cta {
    animation: none;
  }
}

@media (max-width: 640px) {
  .hero-banner {
    max-height: 42vh;
  }

  .hero-cta {
    padding: 1.5rem 0 2rem;
  }
}
