:root {
  color-scheme: dark;
  --ink: #f3efe9;
  --muted: #c7bcb0;
  --paper: #0e0b11;
  --sand: #17131a;
  --ember: #c79a62;
  --oxblood: #4b1f24;
  --steel: #6a6f78;
  --card: rgba(20, 16, 22, 0.9);
  --shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
  --radius: 22px;
}

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

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(199, 154, 98, 0.16), transparent 50%),
    radial-gradient(circle at 82% 4%, rgba(75, 31, 36, 0.22), transparent 55%),
    radial-gradient(circle at 40% 80%, rgba(30, 32, 40, 0.25), transparent 60%),
    linear-gradient(135deg, #0b090e 0%, #15111a 48%, #0a090d 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  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='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: soft-light;
  z-index: 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 86px clamp(24px, 6vw, 88px) 64px;
  z-index: 1;
}

.hero-content h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(3rem, 4.4vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  padding: 8px;
}

/*.badge {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 10px;*/
/*  padding: 8px 16px;*/
/*  border-radius: 999px;*/
/*  background: rgba(75, 31, 36, 0.45);*/
/*  color: #f3d1a2;*/
/*  font-weight: 700;*/
/*  letter-spacing: 0.05em;*/
/*  text-transform: uppercase;*/
/*  font-size: 0.75rem;*/
/*  margin-bottom: 22px;*/
/*}*/

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 24px 0 12px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(120deg, #c79a62, #e2b47a);
  color: #1b120c;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 9px 17px rgba(242, 162, 59, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(242, 162, 59, 0.45);
}

.cta-note {
  font-size: 0.95rem;
  color: var(--muted);
}


.hero-logo {
  position: absolute;
  top: 22px;
  right: clamp(24px, 6vw, 88px);
  width: clamp(120px, 20vw, 210px);
}

.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.main {
  padding: 0 clamp(24px, 6vw, 88px) 64px;
  display: grid;
  gap: 56px;
}

.section-heading h2 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
  max-width: 640px;
}

.video-frame {
  position: relative;
  margin-top: 28px;
  background: #0a080d;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(10, 8, 12, 0.6);
  color: #f6e7d1;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}


.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px clamp(24px, 6vw, 88px) 34px;
  background: rgba(10, 8, 12, 0.65);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 720px) {

  .hero-logo {
    position: static;
    left: auto;
    right: auto;
    transform: none;
    width: 140px;
    margin: 0 auto 10px;
  }

  .cta-row {
    justify-content: center;
  }

  .video-overlay {
    font-size: 0.95rem;
  }
}
