:root {
  --gold: #f2ca50;
  --gold-hover: #e5bc3f;
  --gold-dark: #3c2f00;
  --cream: #f3efe6;
  --muted: #d0c5af;
  --muted-dark: #99907c;
  --section: #131313;
  --card: #1f1f1f;
  --footer: #0e0e0e;
  --black: #000;
  --font-display: "Bona Nova SC", serif;
  --font-sans: "Montserrat", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--cream);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.atmosphere__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: grayscale(0.45) contrast(1.1) brightness(0.72);
}

.atmosphere__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 58% 48% at 50% 32%, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.92) 70%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.94) 100%);
}

.atmosphere__grain {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.frame {
  position: fixed;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
}

.frame__corner {
  position: absolute;
  width: 64px;
  height: 64px;
  border-color: var(--gold);
  border-style: solid;
}

.frame__corner--tl {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.frame__corner--tr {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

.frame__corner--bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}

.frame__corner--br {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}

.stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: 40px 24px 32px;
  text-align: center;
}

.brand {
  animation: rise 0.9s ease both;
}

.brand__logo {
  height: 78px;
  width: auto;
  margin: 0 auto;
}

.eyebrow {
  margin-top: 22px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  animation: rise 0.9s ease 0.12s both;
}

.headline {
  margin-top: 10px;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.4vw, 3.75rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--cream);
  animation: rise 0.9s ease 0.22s both;
}

.gold-bar {
  width: 96px;
  height: 4px;
  margin: 16px 0;
  background: var(--gold);
  animation: grow 0.8s ease 0.4s both;
}

.lead {
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  animation: rise 0.9s ease 0.45s both;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 16px 42px;
  background: var(--gold);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: rise 0.9s ease 0.55s both;
}

.cta:hover {
  background: var(--gold-hover);
}

.contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(980px, 100%);
  margin-top: 36px;
  text-align: left;
  animation: rise 0.9s ease 0.65s both;
}

.contact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 16px;
  border: 1px solid rgba(242, 202, 80, 0.22);
  background: rgba(31, 31, 31, 0.82);
  backdrop-filter: blur(10px);
}

.contact__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--gold);
}

.contact h2 {
  margin-bottom: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact p,
.contact a {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.contact a:hover {
  color: var(--gold);
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 24px 40px;
  border-top: 1px solid rgba(242, 202, 80, 0.3);
  background: rgba(14, 14, 14, 0.88);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.footer__nav a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer p {
  font-size: 0.85rem;
  color: var(--muted);
}

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

@keyframes grow {
  from {
    opacity: 0;
    transform: scaleX(0.2);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (min-width: 720px) {
  .stage {
    padding: 48px 40px 36px;
  }

  .brand__logo {
    height: 96px;
  }

  .contacts {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact {
    padding: 18px 16px;
  }

  .frame {
    inset: 22px;
  }

  .frame__corner {
    width: 72px;
    height: 72px;
  }
}

@media (min-width: 1100px) {
  .contacts {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .contact {
    flex-direction: column;
    gap: 10px;
  }

  .contact p,
  .contact a {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand,
  .eyebrow,
  .headline,
  .gold-bar,
  .lead,
  .cta,
  .contacts {
    animation: none;
  }
}

@media (max-width: 480px) {
  .cta {
    width: 100%;
    max-width: 22rem;
    padding-inline: 24px;
    letter-spacing: 0.18em;
  }

  .frame {
    inset: 10px;
  }

  .frame__corner {
    width: 36px;
    height: 36px;
  }
}
