:root {
  --orange: #f18815;
  --orange-muted: #e18d38;
  --black: #050505;
  --charcoal: #3d3d3d;
  --card: #454545;
  --white: #ffffff;
  --page-padding: clamp(18px, 5vw, 76px);
  --content-width: 1440px;
  --display-font: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --body-font: "Abel", "Arial Narrow", Arial, Helvetica, sans-serif;
  --hero-parallax-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.container {
  width: min(calc(100% - (2 * var(--page-padding))), var(--content-width));
  margin-inline: auto;
}

.site-header {
  height: clamp(92px, 10.3vw, 178px);
  background: #fff;
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(215px, 18.1vw, 312px);
  height: auto;
  transform: translateX(-21px);
}

.home-link {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.home-link img {
  width: clamp(27px, 2.1vw, 36px);
  height: auto;
}

.home-link:focus-visible,
.button:focus-visible,
.contact-item:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 46.1vw, 797px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  z-index: 0;
  inset: -5% 0;
  background: url("../assets/hero_desktop.jpg") center 43% / cover no-repeat;
  transform: translate3d(0, var(--hero-parallax-y), 0) scale(1.035);
  transform-origin: center;
  will-change: transform;
}

.hero::after {
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .25) 36%, rgba(0, 0, 0, 0) 64%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-card {
  width: min(650px, 47%);
}

.hero-card__eyebrow {
  margin: 0 0 10px;
  font-size: clamp(31px, 2.5vw, 43px);
  font-weight: 400;
}

.hero-card h1 {
  margin: 0;
  text-transform: uppercase;
  line-height: .98;
}

.hero-card h1 > span {
  display: block;
  color: var(--orange);
  font-family: var(--display-font);
  font-size: clamp(49px, 4.05vw, 70px);
  font-weight: 900;
  letter-spacing: .01em;
}

.hero-card h1 small {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-family: var(--display-font);
  font-size: clamp(36px, 3.15vw, 54px);
  font-weight: 400;
  letter-spacing: .015em;
}

.hero-card h1 small strong {
  font-weight: inherit;
}

.button {
  display: inline-flex;
  min-width: 292px;
  min-height: 60px;
  margin-top: 42px;
  padding: 11px 34px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--orange);
  border-radius: 15px;
  font-size: clamp(18px, 1.3vw, 22px);
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}

.button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.products-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 50% 39%, rgba(0, 0, 0, .98) 0 47%, rgba(0, 0, 0, .8) 61%, rgba(64, 64, 64, .96) 100%),
    #050505;
  padding: clamp(100px, 8vw, 138px) 0 clamp(145px, 11vw, 190px);
}

.products-intro {
  display: grid;
  justify-items: center;
}

.spoon-mark {
  width: 30px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 72px;
}

.products-intro__text {
  width: 100%;
  font-size: clamp(24px, 1.75vw, 30px);
}

.products-intro__text p {
  margin: 0;
}

.products-intro__text .accent-text {
  color: var(--orange-muted);
  font-size: clamp(25px, 1.8vw, 31px);
  margin-bottom: 12px;
}

.section-rule {
  width: min(610px, 45%);
  height: 2px;
  margin: 71px auto 95px;
  background: var(--orange-muted);
}

.products h2 {
  margin: 0 0 99px;
  text-align: center;
  font-family: var(--display-font);
  font-size: clamp(43px, 3.5vw, 60px);
  letter-spacing: .01em;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 88px 96px;
  align-items: stretch;
}

.product-card {
  grid-column: span 2;
  min-width: 0;
  overflow: hidden;
  background: var(--card);
  border-radius: 0 0 17px 17px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.product-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.product-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.product-card > img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.product-card__body {
  min-height: 275px;
  padding: 40px 29px 35px;
}

.product-card__body .euro {
font-size: 21px;
font-family: 'Abel';
}

.product-card__body h3 {
  margin: 0 0 29px;
  color: var(--orange);
  font-family: var(--display-font);
  font-size: clamp(27px, 1.85vw, 32px);
  line-height: 1.02;
  letter-spacing: .008em;
}

.product-card__body p {
  margin: 0;
  color: #fff;
  font-size: clamp(17px, 1.1vw, 19px);
  line-height: 1.35;
}

.product-card__body strong {
  color: var(--orange);
  font-family: var(--display-font);
  font-weight: 400;
}

.product-card__body b {
  font-family: var(--display-font);
  font-weight: 400;
}

.product-card__body hr {
  border: 0;
  height: 2px;
  margin: 38px 0 37px;
  background: var(--orange-muted);
}

.promo-section {
  background: #fff;
  padding: clamp(145px, 11.8vw, 204px) 0 clamp(140px, 11.4vw, 197px);
}

.promo-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .78fr);
  grid-template-areas:
    "heading image"
    "copy image";
  column-gap: clamp(65px, 8.3vw, 143px);
  align-items: center;
}

.promo-lead__heading {
  grid-area: heading;
  align-self: end;
}

.promo-lead__heading p {
  margin: 0 0 11px;
  color: var(--orange-muted);
  font-size: clamp(32px, 2.4vw, 42px);
  line-height: 1.12;
}

.promo-lead__heading h2 {
  margin: 0;
  color: var(--orange);
  font-family: var(--display-font);
  font-size: clamp(39px, 3vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.promo-lead__image {
  grid-area: image;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.promo-lead__copy {
  grid-area: copy;
  align-self: start;
  margin: 35px 0 0;
  max-width: 830px;
  font-size: clamp(23px, 1.65vw, 29px);
  line-height: 1.45;
}

.promo-lead__copy strong {
  font-family: var(--display-font);
  font-weight: 400;
}

.benefits {
  min-height: 400px;
  margin: clamp(100px, 11.6vw, 150px) auto clamp(100px, 12.4vw, 150px);
  padding: 40px 75px;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  align-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(100deg, #3e3e3e 0%, #070707 68%, #000 100%);
}

.benefit {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 27px;
  min-width: 0;
  text-align: center;
}

.benefit img {
  height: 160px;
  width: auto;
  max-width: 230px;
}

.benefit p {
  margin: 0;
  font-size: clamp(31px, 2.35vw, 41px);
  line-height: 1.08;
  text-transform: uppercase;
}

.benefits__divider {
  width: 2px;
  height: 250px;
  background: rgba(225, 141, 56, .62);
}

.contacts h2 {
  margin: 0 0 92px;
  color: var(--orange);
  text-align: center;
  font-family: var(--display-font);
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 400;
  line-height: 1.1;
}

.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  align-items: stretch;
  width: min(1170px, 90%);
  margin: 0 auto;
}

.contact-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
  padding-inline: 24px;
  text-align: center;
  text-decoration: none;
}

.contact-item img {
  width: auto;
  height: 115px;
}

.contact-item span {
  max-width: 100%;
  font-family: var(--display-font);
  font-size: clamp(26px, 2.55vw, 44px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.contacts__divider {
  width: 2px;
  min-height: 270px;
  background: rgba(225, 141, 56, .5);
}


.mobile-break {
  display: none;
}

.site-footer {
  min-height: 486px;
  padding: 80px 0;
  display: flex;
  align-items: center;
  color: #fff;
  background: #000;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.site-footer address {
  font-style: normal;
  font-size: clamp(17px, 1.05vw, 18px);
  line-height: 1.35;
}

.site-footer a {
  text-decoration: none;
}

.site-footer__logo {
  width: clamp(300px, 26.5vw, 455px);
  height: auto;
}

.benefits_title h2 {
    color: var(--orange);
    font-family: var(--display-font);
    font-size: clamp(39px, 3vw, 52px);
    font-weight: 400;
    line-height: 1.05;
    margin: 50px;
    text-align: center;
    font-family: var(--display-font);
    letter-spacing: .01em;
}



/* Progressive reveal: content remains visible when JavaScript is unavailable. */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity .72s ease,
    transform .82s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready [data-reveal="left"] {
  transform: translate3d(-38px, 0, 0);
}

.reveal-ready [data-reveal="right"] {
  transform: translate3d(38px, 0, 0);
}

.reveal-ready [data-reveal="scale"] {
  transform: scale(.9);
}

.reveal-ready [data-reveal="scale-x"] {
  transform: scaleX(.25);
  transform-origin: center;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* On wide screens the hero is taller, so the photograph keeps more of its original framing. */
@media (min-width: 1024px) {
  .hero {
    min-height: clamp(660px, 50vw, 900px);
  }
}

@media (max-width: 1100px) and (min-width: 768px) {
  :root {
    --page-padding: 42px;
  }

  .hero-card {
    width: 56%;
  }

  .products-grid {
    gap: 55px 45px;
  }

  .product-card__body {
    min-height: 255px;
    padding: 28px 22px;
  }


  .product-card__body .euro {
    font-size: 20px;
  }


  .promo-lead {
    grid-template-columns: 1fr 43%;
    column-gap: 60px;
  }

  .benefits {
    min-height: 310px;
    padding-inline: 40px;
  }

  .benefit img {
    height: 120px;
  }

  .benefits__divider {
    height: 195px;
  }
}

@media (max-width: 767px) {
  :root {
    --page-padding: 18px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    height: 100px;
  }

  .site-header__inner {
    width: calc(100% - 26px);
  }

  .brand img {
    width: 220px;
    transform: translateX(-34px);
  }

  .home-link {
    width: 34px;
    height: 34px;
  }

  .home-link img {
    width: 24px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero {
    min-height: 550px;
    display: block;
    color: #111;
    background:
      linear-gradient(to bottom, transparent 0 73%, rgba(5, 5, 5, .15) 84%, #111 100%),
      url("../assets/hero_mod_compre 2.jpg") center top / 100% auto no-repeat,
      #111;
    padding: 305px 0 0;
  }

  .hero__inner {
    width: calc(100% - 36px);
    display: block;
  }

  .hero-card {
    width: 100%;
    padding: 28px 18px 27px;
    color: #111;
    background: #fff;
    border-radius: 18px;
    text-align: center;
  }

  .hero-card__eyebrow {
    margin: 0 0 4px;
    font-family: var(--body-font);
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.05;
  }

  .hero-card h1 {
    line-height: .97;
  }

  .hero-card h1 > span {
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: .98;
  }

  .hero-card h1 small {
    margin-top: 4px;
    color: #050505;
    font-size: clamp(27px, 8.2vw, 34px);
    line-height: .98;
  }

  .hero-card h1 small strong {
    font-weight: inherit;
  }

  .button {
    min-width: 210px;
    min-height: 38px;
    margin-top: 22px;
    padding: 7px 22px;
    border-radius: 999px;
    font-size: 17px;
  }

  .products-section {
    margin-top: -1px;
    padding: 36px 0 130px;
    background:
      radial-gradient(ellipse at 50% 38%, #020202 0 50%, #0b0b0b 69%, #3c3c3c 100%);
  }

  .spoon-mark {
    width: 22px;
    height: 90px;
    margin: 0 0 26px;
  }

  .products-intro__text {
    font-size: clamp(17px, 4.6vw, 20px);
    line-height: 1.05;
  }

  .products-intro__text .accent-text {
    max-width: 340px;
    margin-bottom: 6px;
    font-size: clamp(18px, 4.8vw, 21px);
    line-height: 1.05;
  }

  .section-rule {
    width: 56%;
    height: 1px;
    margin: 28px auto 53px;
  }

  .products h2 {
    margin-bottom: 50px;
    font-size: clamp(34px, 9vw, 39px);
  }

  .products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .product-card,
  .product-card:nth-child(4),
  .product-card:nth-child(5) {
    grid-column: 1;
    border-radius: 0 0 14px 14px;
  }

  .product-card > img {
    aspect-ratio: 1.17 / 1;
  }

  .product-card__body {
    min-height: 190px;
    padding: 25px 24px 27px;
  }

  .product-card__body h3 {
    margin-bottom: 19px;
    font-size: clamp(25px, 7.2vw, 31px);
  }

  .product-card__body p {
    font-size: clamp(17px, 4.7vw, 20px);
  }

  .product-card__body hr {
    margin: 23px 0 22px;
    height: 1px;
  }

  .product-card__body .euro {
    font-size: 19px;
  }

  .promo-section {
    padding: 73px 0 95px;
  }

  .promo-section__inner {
    width: calc(100% - 24px);
  }

  .promo-lead {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .promo-lead__heading {
    order: 1;
  }

  .promo-lead__heading p {
    margin-bottom: 4px;
    font-size: clamp(27px, 7.9vw, 33px);
    line-height: .96;
  }

  .promo-lead__heading h2 {
    font-size: clamp(31px, 8.9vw, 37px);
    line-height: .98;
  }

  .promo-lead__image {
    order: 2;
    margin-top: 43px;
    aspect-ratio: 1.24 / 1;
  }

  .promo-lead__copy {
    order: 3;
    margin-top: 38px;
    font-size: clamp(20px, 5.4vw, 23px);
    line-height: 1.18;
  }

  .benefits {
    min-height: 0;
    margin: 86px 6px 117px;
    padding: 38px 24px 44px;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: linear-gradient(150deg, #050505 0%, #0b0b0b 48%, #3b3b3b 100%);
  }

  .benefit {
    gap: 20px;
  }

  .benefit img {
    height: 104px;
    max-width: 180px;
  }

  .benefit p {
    font-size: clamp(26px, 7.3vw, 31px);
  }

  .benefits__divider {
    width: 100%;
    height: 1px;
    margin: 34px 0 37px;
  }

  .contacts h2 {
    margin-bottom: 68px;
    text-align: left;
    font-size: clamp(23.8px, 6.72vw, 28px);
    line-height: 1.03;
  }

  .contacts__grid {
    width: calc(100% - 24px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .contact-item {
    gap: 27px;
    padding: 0 10px;
  }

  .contact-item img {
    height: 86px;
  }

  .contact-item span {
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: .93;
  }

  .contacts__divider {
    width: 100%;
    min-height: 0;
    height: 1px;
    margin: 47px 0 43px;
  }

  .mobile-break {
    display: block;
  }

  .site-footer {
    min-height: 475px;
    padding: 65px 0 62px;
  }

  .site-footer__inner {
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    text-align: center;
  }

  .site-footer address {
    font-size: 13px;
    line-height: 1.3;
  }

  .site-footer__logo {
    width: 265px;
  }
}



/* Intermediate widths: keep the mobile composition but avoid oversized single-column cards. */
@media (min-width: 560px) and (max-width: 767px) {
  .hero__inner,
  .products-intro,
  .promo-section__inner {
    width: min(calc(100% - 56px), 690px);
  }

  .hero-card {
    max-width: 560px;
    margin-inline: auto;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 34px;
  }

  .product-card,
  .product-card:nth-child(4),
  .product-card:nth-child(5) {
    grid-column: auto;
  }

  .product-card:nth-child(5) {
    grid-column: 1 / -1;
    width: calc(50% - 17px);
    justify-self: center;
  }

  .product-card__body {
    min-height: 220px;
  }

  .promo-lead,
  .contacts {
    max-width: 690px;
    margin-inline: auto;
  }
}

/* Fine tuning for the 402 px Figma mobile frame. */
@media (max-width: 480px) {
  .site-header {
    height: 130px;
  }

  .site-header__inner {
    width: calc(100% - 38px);
  }

  .brand img {
    width: 262px;
    transform: translateX(-40px);
  }

  .home-link {
    width: 46px;
    height: 46px;
  }

  .home-link img {
    width: 39px;
  }

  .hero {
    min-height: 1160px;
    padding-top: 660px;
  }

  .hero__inner {
    width: calc(100% - 36px);
  }

  .hero-card {
    padding: 56px 18px 52px;
    border-radius: 20px;
  }

  .hero-card__eyebrow {
    margin-bottom: 8px;
    font-size: 34px;
  }

  .hero-card h1 > span {
    font-size: 49px;
    line-height: 1.06;
  }

  .hero-card h1 small {
    margin-top: 10px;
    font-size: 39px;
    line-height: 1.12;
  }

  .hero-card h1 small .hero-conjunction {
    font-family: var(--body-font);
    font-size: .92em;
    font-weight: 400;
    text-transform: none;
  }

  .button {
    min-width: 220px;
    min-height: 48px;
    margin-top: 38px;
    padding-block: 9px;
    font-size: 20px;
  }

  .products-section {
    padding-top: 38px;
    padding-bottom: 220px;
  }

  .spoon-mark {
    width: 22px;
    height: 90px;
    margin-bottom: 50px;
  }

  .products-intro__text {
    font-size: 26px;
    line-height: 1.1;
  }

  .products-intro__text .accent-text {
    max-width: none;
    margin-bottom: 8px;
    font-size: 27px;
    line-height: 1.08;
  }

  .section-rule {
    width: 54%;
    margin: 52px auto 105px;
  }

  .products h2 {
    margin-bottom: 62px;
    font-size: 40px;
  }

  .products-grid {
    gap: 82px;
  }

  .product-card__body {
    min-height: 215px;
    padding: 31px 24px 32px;
  }

  .product-card:first-child .product-card__body {
    min-height: 280px;
  }

  .product-card__body h3 {
    margin-bottom: 23px;
    font-size: 27px;
  }

  .product-card__body p {
    font-size: 20px;
    line-height: 1.22;
  }

   .product-card__body .euro {
    font-size: 22px;
  }

  .product-card__body hr {
    margin: 30px 0 29px;
  }

  .promo-section {
    padding-top: 75px;
    padding-bottom: 100px;
  }

  .promo-lead__heading p {
    font-size: 30px;
  }

  .promo-lead__heading h2 {
    font-size: 36px;
  }

  .promo-lead__image {
    margin-top: 58px;
  }

  .promo-lead__copy {
    margin-top: 58px;
    font-size: 23px;
    line-height: 1.18;
  }

  .benefits {
    margin-top: 150px;
    margin-bottom: 150px;
    padding: 58px 24px 60px;
  }

  .benefit {
    gap: 30px;
  }

  .benefit img {
    height: 138px;
    max-width: 205px;
  }

  .benefit p {
    font-size: 31px;
  }

  .benefits__divider {
    margin: 50px 0 52px;
  }

  .contacts h2 {
    margin-bottom: 92px;
    font-size: 34px;
  }

  .contact-item {
    gap: 36px;
  }

  .contact-item img {
    height: 105px;
  }

  .contact-item span {
    font-size: 30px;
  }

  .contacts__divider {
    margin: 64px 0 60px;
  }

  .site-footer {
    min-height: 395px;
    padding: 48px 0 44px;
  }

  .site-footer__inner {
    gap: 36px;
  }

  .site-footer address {
    font-size: 11px;
  }

  .site-footer__logo {
    width: 345px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero::before {
    transform: scale(1.035) !important;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
