:root {
  --bg: #f5f3ee;
  --text: #151515;
  --muted: #66645f;
  --panel: #ffffff;
  --dark: #101113;
  --dark-text: #f2f0ea;
  --accent: #7b1e2b;
  --border: rgba(0, 0, 0, 0.12);

  font-family:
    "Montserrat",
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1.25rem 2rem;
  color: white;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  padding: 7rem 2rem 4rem;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at center, rgba(123, 30, 43, 0.2), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c5cc;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

h2 {
  max-width: 760px;
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
  line-height: 1.6;
}

.button,
button {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  padding: 0.9rem 1.25rem;

  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.section {
  padding: 7rem 2rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-dark {
  background: var(--dark);
  color: var(--dark-text);
}

.section-dark p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  line-height: 1.7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--panel);
  padding: 1.5rem;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: white;
  padding: 0.85rem 1rem;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 800px) {
  .site-header {
    position: absolute;
    padding: 1rem;
  }

  .nav {
    display: none;
  }

  .grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 5rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video {
    display: none;
  }

  .hero {
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.64)),
      url("assets/hero-fallback.jpg");
    background-size: cover;
    background-position: center;
  }
}