:root {
  --bg: #fbfaf6;
  --text: #2d2a26;
  --muted: #6f675f;
  --primary: #8c6f56;
  --primary-dark: #705842;
  --card: rgba(255, 255, 255, 0.65);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --max-width: 960px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: end;
  padding: 4rem 0;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: translate(-50%, -50%) scale(0.85);
  z-index: 0;
  border-radius: var(--radius);
}

@media (max-width: 640px) {
  .hero__video {
    /*object-position: center top;*/
    transform: translate(-50%, -80%);
    border-radius: none;
  }
}

.hero__card {
  width: 100%;
  background: var(--card);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.9s ease-out both;
  animation-delay: 1s;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.1;
}

.subtitle {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-size: 1em;
  min-width: 220px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--primary);
  color: #fff;
}

.button--primary:hover {
  background: var(--primary-dark);
}

.button--secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.button--secondary:hover {
  background: rgba(140, 111, 86, 0.08);
}

.button__icon {
  width: 2em;
  height: 2em;
  display: inline-block;
}

footer {
  padding: 1.5rem 0 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .hero__card {
    padding: 2.2rem 1.2rem;
  }

  .button {
    width: 100%;
    min-width: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}