:root {
  --bg: #100d0a;
  --bg-deep: #080705;
  --panel: rgba(30, 24, 18, 0.74);
  --cream: #f7ead2;
  --cream-muted: #cdbc9f;
  --gold: #d7a94f;
  --gold-soft: #f0cd83;
  --border: rgba(240, 205, 131, 0.2);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-lg: 30px;
  --radius-md: 18px;
  --container: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--cream);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at var(--glow-x, 18%) var(--glow-y, 12%), rgba(215, 169, 79, 0.2), transparent 30rem),
    radial-gradient(circle at 82% 76%, rgba(157, 48, 38, 0.25), transparent 26rem),
    linear-gradient(135deg, var(--bg-deep), var(--bg) 46%, #17100c);
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
}

body::before {
  opacity: 0.38;
  background-image:
    linear-gradient(30deg, rgba(240, 205, 131, 0.055) 12%, transparent 12.5%, transparent 87%, rgba(240, 205, 131, 0.055) 87.5%),
    linear-gradient(150deg, rgba(240, 205, 131, 0.055) 12%, transparent 12.5%, transparent 87%, rgba(240, 205, 131, 0.055) 87.5%),
    linear-gradient(30deg, rgba(240, 205, 131, 0.055) 12%, transparent 12.5%, transparent 87%, rgba(240, 205, 131, 0.055) 87.5%),
    linear-gradient(150deg, rgba(240, 205, 131, 0.055) 12%, transparent 12.5%, transparent 87%, rgba(240, 205, 131, 0.055) 87.5%);
  background-position: 0 0, 0 0, 34px 60px, 34px 60px;
  background-size: 68px 120px;
  -webkit-mask-image: radial-gradient(circle at 50% 42%, black, transparent 72%);
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 72%);
  animation: pattern-drift 26s linear infinite;
}

body::after {
  background:
    radial-gradient(ellipse at 50% 105%, rgba(215, 169, 79, 0.19), transparent 42%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.24) 100%);
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 5px;
}

.site-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  padding: clamp(28px, 5vw, 64px) 0 86px;
  place-items: center;
}

.hero {
  width: var(--container);
}

.brand {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(28px, 5vh, 54px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: clamp(160px, 22vw, 270px);
  height: auto;
  filter: drop-shadow(0 0 28px rgba(215, 169, 79, 0.18)) drop-shadow(0 20px 42px rgba(0, 0, 0, 0.32));
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.hero__copy {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  content: "";
}

.eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1 {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7.3rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero__intro {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--cream-muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.8;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #17100b;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 46px rgba(215, 169, 79, 0.24);
}

.button--primary:hover {
  box-shadow: 0 22px 58px rgba(215, 169, 79, 0.34);
}

.button--secondary {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.035);
}

.button--secondary:hover {
  border-color: rgba(240, 205, 131, 0.54);
  background: rgba(240, 205, 131, 0.1);
}

.details-panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 34%),
    var(--panel);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.details-panel::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 24% 0%, rgba(215, 169, 79, 0.28), transparent 35%);
  content: "";
}

.contact-card {
  padding: 18px;
  border: 1px solid rgba(240, 205, 131, 0.12);
  border-radius: var(--radius-md);
  background: rgba(8, 7, 5, 0.34);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.contact-card:hover {
  border-color: rgba(240, 205, 131, 0.28);
  background: rgba(8, 7, 5, 0.46);
  transform: translateY(-2px);
}

.contact-card__label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
  color: var(--cream-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-card p + p {
  margin-top: 4px;
}

.contact-card a {
  text-decoration-color: rgba(240, 205, 131, 0.34);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.contact-card a:hover {
  color: var(--gold-soft);
  text-decoration-color: var(--gold-soft);
}

.site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 20px;
  color: rgba(247, 234, 210, 0.64);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-soft);
  text-decoration-color: rgba(240, 205, 131, 0.38);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.site-footer a:hover {
  color: var(--cream);
  text-decoration-color: var(--cream);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.is-loaded .reveal {
  animation: fade-in-up 800ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.is-loaded .hero__copy {
  animation-delay: 130ms;
}

.is-loaded .details-panel {
  animation-delay: 260ms;
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pattern-drift {
  to {
    background-position: 68px 120px, 68px 120px, 102px 180px, 102px 180px;
  }
}

@media (max-width: 880px) {
  :root {
    --container: min(100% - 28px, 680px);
  }

  .site-shell {
    padding-top: 30px;
  }

  .brand {
    margin-bottom: 34px;
  }

  .hero__content {
    grid-template-columns: 1fr;
  }

  .details-panel {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  body {
    background:
      radial-gradient(circle at var(--glow-x, 24%) var(--glow-y, 8%), rgba(215, 169, 79, 0.18), transparent 18rem),
      radial-gradient(circle at 92% 86%, rgba(157, 48, 38, 0.22), transparent 20rem),
      linear-gradient(135deg, var(--bg-deep), var(--bg) 48%, #17100c);
  }

  .site-shell {
    padding-bottom: 110px;
  }

  .brand__logo {
    width: clamp(150px, 48vw, 220px);
  }

  .eyebrow {
    max-width: 320px;
    justify-content: center;
    line-height: 1.55;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 20px;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .hero__intro {
    margin-top: 22px;
    line-height: 1.68;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .details-panel {
    border-radius: 24px;
  }

  .contact-card {
    padding: 16px;
  }

  .site-footer {
    padding: 16px 18px;
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
