:root {
  color-scheme: light;
  --blue: #003a8a;
  --blue-soft: #1f65c4;
  --yellow: #fffa39;
  --yellow-deep: #ffb62b;
  --white: #ffffff;
  --black: #000000;
  --muted: #526071;
  --teal: #008b78;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100dvh;
  background: var(--white);
  color: var(--black);
  font-family: Chivo, Arial, Helvetica, sans-serif;
}

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

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: 100%;
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--white);
}

.site-header {
  min-height: 132px;
  display: flex;
  align-items: center;
  background: var(--white);
}

.header-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  width: 191px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-link img {
  display: block;
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 47px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
}

.nav-links a {
  line-height: 1.2;
  white-space: nowrap;
}

.mobile-menu {
  width: 34px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--teal);
}

.hero {
  min-height: 0;
  overflow: hidden;
}

.hero-inner {
  width: min(1140px, calc(100% - 40px));
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding-bottom: 72px;
}

.hero-copy {
  align-self: center;
  padding-top: 46px;
}

.hero-copy h1 {
  max-width: 520px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(36px, 3.1vw, 40px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 555px;
  margin: 22px 0 30px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.62;
  font-weight: 400;
}

.hero-button {
  width: min(290px, 100%);
  min-height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d2b300;
  border-radius: 20px;
  background-image: linear-gradient(to bottom, var(--yellow), #fff0b5 50%, var(--yellow-deep) 89%, var(--yellow));
  color: var(--blue);
  box-shadow: var(--shadow);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.41px;
  text-shadow: 0 2px 1px #fff1b9;
}

.hero-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.hero-product picture {
  width: min(100%, 520px);
  display: block;
}

.hero-product img {
  display: block;
}

.made-in {
  width: min(100%, 525px);
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 17px;
  color: var(--blue-soft);
  font-size: 16px;
  line-height: 1.42;
  font-weight: 400;
}

.made-in img {
  width: 30px;
  height: 30px;
}

.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.36);
  backdrop-filter: blur(1.2px);
}

.cookie-box {
  width: min(1040px, calc(100vw - 44px));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--white);
  color: #2b3140;
  box-shadow: 0 18px 42px rgba(12, 20, 34, 0.28);
}

.cookie-box > * {
  min-width: 0;
}

.cookie-box h2 {
  margin: 0 0 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
}

.cookie-box p {
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13.5px;
  line-height: 1.38;
}

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

.cookie-btn {
  min-width: 96px;
  min-height: 38px;
  border: 0;
  border-radius: 4px;
  padding: 0 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn.secondary {
  color: #303344;
  background: #e4e6ec;
}

.cookie-btn.primary {
  color: var(--white);
  background: #2f9d43;
}

@media (max-width: 992px) {
  .site-header {
    min-height: 96px;
  }

  .nav-links {
    gap: 20px;
    font-size: 16px;
  }

  .hero-inner {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 12px;
    padding-bottom: 82px;
  }

  .hero-copy h1 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .site-header {
    min-height: 92px;
  }

  .header-inner {
    width: calc(100% - 30px);
  }

  .logo-link {
    width: 100px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-inner {
    width: calc(100% - 30px);
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0;
    padding-bottom: 164px;
  }

  .hero-product {
    order: -1;
    gap: 10px;
  }

  .hero-product picture {
    width: min(100%, 380px);
  }

  .made-in {
    width: min(100%, 380px);
    grid-template-columns: 31px 1fr;
    gap: 16px;
    font-size: 17px;
    line-height: 1.35;
  }

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

  .hero-copy h1 {
    max-width: 360px;
    font-size: 29px;
    line-height: 1.25;
  }

  .hero-copy p {
    max-width: 360px;
    margin: 24px 0 28px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-button {
    width: min(100%, 288px);
    min-height: 68px;
    font-size: 25px;
  }

  .cookie-overlay {
    padding: 14px;
  }

  .cookie-box {
    width: calc(100vw - 28px);
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }

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

  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero-product picture {
    width: min(100%, 365px);
  }

  .made-in {
    font-size: 16px;
  }

  .hero-copy h1 {
    font-size: 27px;
  }

  .hero-copy p {
    margin-top: 22px;
  }
}

@media (max-height: 720px) and (min-width: 769px) {
  .site-header {
    min-height: 104px;
  }

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

  .hero-inner {
    padding-bottom: 60px;
  }

  .hero-product picture {
    width: min(100%, 455px);
  }
}
