* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Helvetica, Arial, sans-serif;
  color: #f3ead8;
  background:
    radial-gradient(circle at 50% 6%, rgba(199, 168, 106, 0.08), transparent 22%),
    linear-gradient(135deg, #090b0d 0%, #15181b 44%, #050607 100%);
}

.brand-header {
  min-height: 22vh;
  display: grid;
  place-items: center;
  padding: 20px 0 10px;
  background: #050607;
  overflow: hidden;
}

/* This wrapper removes the visible rectangle around the logo image.
   It fades the logo background into pure black on left/right/top/bottom. */
.logo-fade {
  width: min(1120px, 100vw);
  position: relative;
  display: grid;
  place-items: center;
  background: #050607;
  overflow: hidden;
}

.logo-fade::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to right, #050607 0%, rgba(5,6,7,0) 13%, rgba(5,6,7,0) 87%, #050607 100%),
    linear-gradient(to bottom, #050607 0%, rgba(5,6,7,0) 20%, rgba(5,6,7,0) 80%, #050607 100%);
}

.logo {
  width: min(1080px, 105vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 48px rgba(0,0,0,0.7));
}

.hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  overflow: hidden;
  background: #050607;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  background: #050607;
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0.00), rgba(0,0,0,0.22) 68%, rgba(0,0,0,0.54) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.00), rgba(0,0,0,0.26));
}

.intro {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 72px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243, 234, 216, 0.68);
  font-size: 12px;
}

h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(40px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 650;
}

.subtitle {
  max-width: 690px;
  margin: 28px auto 0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.48;
  color: rgba(243, 234, 216, 0.72);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  color: #08090a;
  background: linear-gradient(135deg, #f2dfb5, #b7904c);
  font-weight: 700;
  box-shadow: 0 18px 50px rgba(0,0,0,0.42);
}

.button.secondary {
  color: #f3ead8;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: none;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 88px;
}

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

.card {
  min-height: 220px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.card span {
  display: block;
  margin-bottom: 54px;
  color: rgba(243, 234, 216, 0.46);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.card p {
  margin: 0;
  color: rgba(243, 234, 216, 0.68);
  line-height: 1.45;
}

@media (max-width: 760px) {
  .brand-header {
    min-height: 15vh;
    padding: 14px 0 8px;
  }

  .logo-fade {
    width: 112vw;
  }

  .logo {
    width: 112vw;
  }

  .hero {
    height: 62vh;
    min-height: 340px;
  }

  .intro {
    width: min(100% - 28px, 1080px);
    padding: 54px 0 56px;
  }

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

  h1 {
    letter-spacing: -0.055em;
  }
}
