:root {
  --nav: #2a2530;
  --hero: #597582;
  --orange: #ff6b05;
  --pink: #ffabb3;
  --white: #ffffff;
  --ink: #1e2026;
  --muted: #4c5a5e;
  --modal-line: #dfe8e7;
  font-family: "Nunito", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  color: var(--ink);
  background: var(--hero);
}

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

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background: var(--hero);
}

.mast-nav {
  height: 84px;
  display: flex;
  align-items: center;
  background: var(--nav);
  color: var(--white);
}

.nav-inner {
  width: min(1144px, calc(100% - 44px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  color: var(--white);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.brand strong {
  margin-right: 8px;
  font-weight: 900;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.order-link {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 5px;
  background: var(--orange);
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
}

.hero {
  height: calc(100dvh - 84px);
  min-height: 414px;
  background: var(--hero);
}

.hero-inner {
  width: min(1200px, 100%);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 500px minmax(0, 700px);
  align-items: start;
}

.hero-product {
  padding-top: 32px;
  padding-right: 50px;
}

.hero-product img {
  width: 350px;
  margin: 0 auto;
}

.hero-copy {
  padding-top: 57px;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 em {
  color: var(--pink);
  font-style: italic;
  font-weight: 800;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(24, 22, 29, 0.58);
  backdrop-filter: blur(4px);
}

.cookie-modal {
  width: min(520px, 100%);
  padding: 28px;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.cookie-kicker {
  margin: 0 0 8px;
  color: var(--hero);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cookie-modal h2 {
  margin: 0;
  color: var(--hero);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
}

.cookie-modal p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.cookie-button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
}

.cookie-button.primary {
  background: var(--orange);
  color: var(--white);
}

.cookie-button.secondary {
  background: #eef4f5;
  color: var(--hero);
}

@media (max-width: 980px) {
  .mast-nav {
    height: 76px;
  }

  .nav-inner {
    width: min(100% - 28px, 1144px);
  }

  .brand {
    font-size: 30px;
  }

  .nav-link {
    display: none;
  }

  .hero {
    height: calc(100dvh - 76px);
    min-height: 620px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    padding: 28px 20px 40px;
  }

  .hero-product {
    order: 2;
    padding: 18px 0 0;
  }

  .hero-product img {
    width: min(310px, 72vw);
  }

  .hero-copy {
    order: 1;
    padding-top: 0;
    text-align: center;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 44px;
    line-height: 1.08;
  }
}

@media (max-width: 560px) {
  .mast-nav {
    height: 72px;
  }

  .brand {
    font-size: 27px;
  }

  .order-link {
    min-height: 32px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero {
    height: calc(100dvh - 72px);
    min-height: 570px;
  }

  .hero-inner {
    padding: 28px 16px 30px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-product img {
    width: min(280px, 74vw);
  }

  .cookie-modal {
    padding: 22px;
  }

  .cookie-modal h2 {
    font-size: 28px;
  }

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