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

:root {
  --color-bg: #0a0808;
  --color-bg-elevated: #120e0e;
  --color-surface: #1a1214;
  --color-crimson: #8b1a2b;
  --color-crimson-light: #c42d45;
  --color-gold: #c9a962;
  --color-gold-dim: #8a7340;
  --color-text: #f0ebe3;
  --color-text-muted: #a89f94;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(10, 8, 8, 0.92) 0%, transparent 100%);
  padding: 1.25rem 0;
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.2s;
}

.logo:hover {
  color: var(--color-text);
}

.header__contact {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10, 8, 8, 0.9) 0%,
      rgba(10, 8, 8, 0.55) 20%,
      rgba(10, 8, 8, 0.05) 50%,
      rgba(10, 8, 8, 0.05) 72%,
      rgba(10, 8, 8, 0.82) 100%
    ),
    linear-gradient(to right,
      rgba(10, 8, 8, 0.65) 0%,
      transparent 38%,
      transparent 62%,
      rgba(10, 8, 8, 0.65) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6.5rem 1.5rem 2rem;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--color-text);
  max-width: 20ch;
  margin-bottom: 2rem;
}

.hero__verse {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 36ch;
}

.hero__verse p + p {
  margin-top: 0.25rem;
}

/* Intro */

.intro {
  background: var(--color-bg);
  padding: 5rem 1.5rem;
}

.intro__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.intro__divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  margin: 0 auto 2.5rem;
}

.intro__lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.intro__sub {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* CTA */

.cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(139, 26, 43, 0.25) 0%, transparent 70%),
    var(--color-bg-elevated);
  padding: 5rem 1.5rem 6rem;
  border-top: 1px solid rgba(201, 169, 98, 0.12);
}

.cta__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.cta__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta__button {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-bg);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dim) 100%);
  padding: 1rem 2.5rem;
  border: 1px solid rgba(201, 169, 98, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 98, 0.2);
}

/* Footer */

.footer {
  margin-top: auto;
  background: var(--color-surface);
  border-top: 1px solid rgba(201, 169, 98, 0.1);
  padding: 2.5rem 1.5rem;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-dim);
  margin-bottom: 1.25rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1.5rem;
}

.footer__nav a {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer__sep {
  color: rgba(168, 159, 148, 0.35);
  user-select: none;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(168, 159, 148, 0.5);
  letter-spacing: 0.04em;
}

/* Responsive */

@media (min-width: 768px) {
  .hero__content {
    max-width: 52%;
    padding: 7rem 2rem 2rem 1.5rem;
  }

  .hero__title {
    max-width: 36ch;
  }

  .hero__verse {
    max-width: none;
    border-left: 1px solid rgba(201, 169, 98, 0.3);
    padding-left: 1.75rem;
  }

  .intro__inner {
    max-width: 860px;
  }

  .cta__inner {
    max-width: 760px;
  }
}

@media (min-width: 1024px) {
  .hero__image {
    object-position: center 12%;
  }

  .hero__content {
    max-width: 46%;
    padding-top: 7.5rem;
  }

  .hero__title {
    max-width: none;
  }

  .hero__verse p {
    display: inline;
  }

  .hero__verse p + p::before {
    content: " ";
  }

  .hero__verse p + p {
    margin-top: 0;
  }

  .intro__inner {
    max-width: 960px;
  }

  .intro__lead,
  .intro__sub {
    max-width: none;
  }
}
