@font-face {
  font-family: "Sora";
  src: url("assets/Sora-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("assets/Sora-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --white: #ffffff;
  --deep: #210b15;
  --pink: #7f334b;
  --button: #8f4259;
  --button-dark: #6f2b40;
  --cookie-green: #61a229;
  --shadow: 0 20px 52px rgba(14, 6, 10, 0.32);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  font-family: "Sora", Arial, sans-serif;
  color: var(--white);
  background: var(--deep);
}

.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background-image: url("assets/hero-desktop.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(710px, calc(100% - 48px));
  height: 100%;
  margin-left: clamp(42px, 16.35vw, 312px);
  padding-top: clamp(120px, 19.45vh, 169px);
  text-align: left;
}

.brand-mark {
  width: 355px;
  max-width: min(355px, 100%);
  height: auto;
  display: block;
  margin: 0 0 28px;
}

.eyebrow {
  max-width: 600px;
  margin: 0 0 16px;
  font-size: clamp(42px, 3.15vw, 60px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin: 0 0 27px;
  font-size: clamp(23px, 1.58vw, 30px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: 0;
}

.subhead {
  margin: 0 0 24px;
  font-size: clamp(19px, 1.2vw, 23px);
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.body-copy {
  max-width: 610px;
  margin: 0;
  font-size: clamp(21px, 1.24vw, 24px);
  line-height: 1.36;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--button);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(64, 16, 32, 0.26);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(1.5px);
  cursor: pointer;
}

.cookie-popup {
  width: min(1060px, 100%);
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 8px;
  background: #ffffff;
  color: #353535;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.cookie-copy h2 {
  margin: 0 0 6px;
  color: #222222;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 700;
}

.cookie-copy p {
  max-width: 800px;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.38;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-btn {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  color: #333333;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.cookie-btn.muted {
  background: #dedede;
}

.cookie-btn.accept {
  background: var(--cookie-green);
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero {
    background-image: url("assets/hero-mobile.webp");
    background-position: center top;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(48, 13, 27, 0.08), rgba(48, 13, 27, 0.56));
  }

  .hero-content {
    width: min(100% - 28px, 520px);
    margin: 0 auto;
    padding-top: 34px;
    text-align: left;
  }

  .brand-mark {
    width: 220px;
    margin-bottom: 18px;
  }

  .eyebrow {
    font-size: clamp(29px, 8vw, 43px);
    line-height: 1.07;
  }

  h1 {
    font-size: clamp(19px, 5vw, 25px);
    line-height: 1.18;
  }

  .subhead {
    font-size: clamp(16px, 4.4vw, 20px);
    line-height: 1.2;
  }

  .body-copy {
    max-width: 440px;
    font-size: clamp(16px, 4.35vw, 20px);
    line-height: 1.3;
  }

  .hero-cta {
    min-height: 42px;
    padding: 0 20px;
    font-size: 12px;
  }

  .cookie-overlay {
    padding: 14px;
  }

  .cookie-popup {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .cookie-copy p {
    font-size: 12.5px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .cookie-btn {
    min-height: 38px;
    padding: 0 8px;
    font-size: 12px;
  }
}

@media (max-width: 440px) {
  .hero-content {
    padding-top: 26px;
  }

  .brand-mark {
    width: 190px;
  }

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

  .cookie-btn.accept {
    grid-column: 1 / -1;
  }
}
