:root {
  --orange: #f18815;
  --panel: #e9e9e9;
  --black: #000;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--black);
  font-family: "Oswald", "Arial Narrow", sans-serif;
}

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

.site-header {
  /*display: grid;
  place-items: center;*/
  background: var(--black);
}

.header-logo {
  width: 350px;
  margin: 0 auto;
  animation: logoIntro 700ms ease-out both;
}

.hero {
  position: relative;
  height: 750px;
  width: 100%;
  overflow: hidden;
  background: var(--black);
  outline: none;
}

.hero:focus-visible {
  box-shadow: inset 0 0 0 3px var(--orange);
}

.hero__slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  z-index: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 550ms ease, visibility 550ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-slide--baker img {
  object-position: 54% center;
}

.hero-slide--bar img {
  object-position: 58% center;
}

.slider-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 42px;
  height: 72px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.slider-arrow:hover {
  opacity: 0.72;
}

.slider-arrow:focus-visible,
.slider-dot:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.slider-arrow::before {
  content: "";
  position: absolute;
  top: 12px;
  width: 36px;
  height: 36px;
  border-top: 6px solid var(--white);
  border-right: 6px solid var(--white);
}

.slider-arrow--left {
  left: 72px;
}

.slider-arrow--left::before {
  left: 10px;
  transform: rotate(-135deg);
}

.slider-arrow--right {
  right: 72px;
}

.slider-arrow--right::before {
  right: 10px;
  transform: rotate(45deg);
}

.slider-dots {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.slider-dot.is-active {
  background: var(--white);
  transform: scale(1.18);
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .sector-card.reveal-item {
  transform: translateY(14px);
}

.motion-ready .sector-card.reveal-item.is-visible {
  transform: translateY(0);
}

.motion-ready .sector-card img {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}

.motion-ready .sector-card.is-visible img {
  animation: iconLineIn 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--icon-delay, 0ms);
}

.motion-ready .contact-row.is-visible svg {
  animation: contactIconIn 520ms ease-out both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 60ms);
}

.intro {
  min-height: 500px;
  padding: 100px 40px 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.intro__content {
  margin: 0 auto;
}

.intro h1,
.sectors-panel h2,
.sector-card h3,
.intro p {
  margin: 0;
}

.intro h1 {
  font-size: 50px;
  line-height: 1.08;
  font-weight: 700;
}

.intro p {
  margin-top: 15px;
  color: #d8d8d8;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.45;
}

.intro p span {
  color: var(--orange);
}

.promo-banner {
  position: relative;
  overflow: hidden;
  background: var(--black);
  /*padding-bottom: 100px;*/
  color: var(--white);
}

.promo-visual {
  position: relative;
  min-height: clamp(520px, 43vw, 780px);
  display: flex;
  /*align-items: center;*/
  padding-top: 10%;
}

.promo-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.52) 34%, rgba(0, 0, 0, 0.16) 66%, rgba(0, 0, 0, 0.06) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 34%);
  pointer-events: none;
}

.promo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.promo-content {
  position: relative;
  z-index: 2;
  width: min(82.5%, 1500px);
  margin: 0 auto;
}

.promo-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 3.1vw, 90px);
  line-height: 1.12;
  font-weight: 700;
  color: var(--white);
}

.promo-title span {
  display: block;
}

.promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(260px, 18.95vw, 546px);
  min-height: clamp(58px, 3.8vw, 110px);
  margin-top: clamp(28px, 2.1vw, 44px);
  padding: 0.35em 1.45em;
  border-radius: clamp(12px, 0.8vw, 22px);
  background: var(--orange);
  color: var(--white);
  font-size: clamp(22px, 1.55vw, 44px);
  line-height: 1;
  font-weight: 300;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.promo-button:hover {
  opacity: 0.9;
}

.promo-button:active {
  transform: translateY(1px);
}

.promo-button:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 5px;
}

.sectors {
  background: linear-gradient(to bottom, #ffffff00 0 598px, var(--orange) 598px 100%);
}

.sectors-panel {
  width: calc(100% - 152px);
  max-width: 1576px;
  min-height: 1187px;
  margin: -100px auto 0;
  padding: 109px 110px 130px;
  position: relative;
  background: var(--panel);
  z-index: 5;
}

.sectors-panel h2 {
  text-align: center;
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
}

.sector-grid {
  max-width: 1360px;
  margin: 124px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 155px 50px;
}

.sector-card {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--orange);
  text-align: center;
}

.sector-card,
.sector-card img {
  will-change: transform, opacity;
}

.sector-card img {
  width: auto;
  height: 118px;
  object-fit: contain;
}

.sector-card h3 {
  margin-top: 24px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 300;
}

.sector-card--bar img,
.sector-card--ristorante img,
.sector-card--lavanderia img {
  height: 105px;
}

.sector-card--gdo img {
  height: 110px;
}

.site-footer {
  min-height: 486px;
  max-width: 100%;
  margin: -100px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 45px;
  background: var(--orange);
}

.contact {
  order: 1;
  margin: 0;
  font-size: 24px;
  line-height: 1.45;
  font-style: normal;
  font-weight: 400;
}

.contact a {
  text-decoration: none;
  color:#ffffff;
}

.contact strong {
  font-weight: 700;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.contact-row svg {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  fill: currentColor;
}

.footer-logo {
  order: 2;
  width: 435px;
}

.label-mobile {
  display: none;
}

@keyframes logoIntro {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconLineIn {
  0% {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes contactIconIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 700px) {
  .site-header {

  }

  .header-logo {
    width: 151px;
  }

  .hero {
    height: 318px;
    width: 100%;
  }

  .hero-slide--chef img {
    object-position: 52% center;
  }

  .hero-slide--baker img {
    object-position: 58% center;
  }

  .hero-slide--bar img {
    object-position: 66% center;
  }

  .slider-arrow {
    width: 28px;
    height: 48px;
  }

  .slider-arrow::before {
    top: 12px;
    width: 17px;
    height: 17px;
    border-width: 2px;
  }

  .slider-arrow--left {
    left: 17px;
  }

  .slider-arrow--right {
    right: 17px;
  }

  .slider-dots {
    bottom: 15px;
    gap: 9px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }

  .intro {
    min-height: 0;
    padding: 30px 19px 24px;
  }

  .intro h1 {
    font-size: 19px;
    line-height: 1.1;
  }

  .intro p {
    max-width: 365px;
    margin: 7px auto 0;
    font-size: 16px;
    line-height: 1.4;
  }

  .desktop-only {
    display: none;
  }

  .label-desktop {
    display: none;
  }

  .label-mobile {
    display: inline;
  }

  .sectors {
    background: linear-gradient(to bottom, #ffffff00 0 510px, var(--orange) 510px 100%);
  }

  .promo-banner {
    /*padding-bottom: 108px;*/
  }

  .promo-visual {
    min-height: clamp(430px, 112vw, 520px);
    align-items: center;
  }

  .promo-visual::before {
    background:
      linear-gradient(0deg, rgba(40, 40, 40, 1) 0%, rgba(40, 40, 40, 0.96) 21%, rgba(0, 0, 0, 0.6) 42%, rgba(0, 0, 0, 0.08) 68%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.12) 100%);
  }

  .promo-image {
    object-position: 58% center;
  }

  .promo-content {
    width: calc(100% - 44px);
    padding-bottom: clamp(44px, 12vw, 62px);
    text-align: center;
  }

  .promo-title {
    max-width: 100%;
    font-size: clamp(17px, 5.35vw, 23px);
    line-height: 1.08;
  }

  .promo-button {
    min-width: clamp(128px, 33vw, 180px);
    min-height: clamp(36px, 9vw, 47px);
    margin-top: clamp(18px, 5.25vw, 26px);
    border-radius: 999px;
    font-size: clamp(18px, 5.25vw, 24px);
  }

  .sectors-panel {
    width: calc(100% - 36px);
    min-height: 740px;
    margin-top: -142px;
    padding: 34px 32px 60px;
  }

  .sectors-panel h2 {
    font-size: 23px;
  }

  .sector-grid {
    margin-top: 33px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .sector-card {
    height: 130px;
  }

  .motion-ready .sector-card.is-visible img {
    animation-delay: 0ms;
  }

  .sector-card img,
  .sector-card--bar img,
  .sector-card--ristorante img,
  .sector-card--lavanderia img,
  .sector-card--gdo img {
    width: auto;
    height: 55px;
  }

  .sector-card h3 {
    margin-top: 15px;
    font-size: 15px;
  }

  .sector-card--gelato {
    grid-column: 1;
    grid-row: 2;
  }

  .sector-card--ristorante {
    grid-column: 2;
    grid-row: 2;
  }

  .sector-card--hotel {
    grid-column: 1;
    grid-row: 3;
  }

  .sector-card--pizzeria {
    grid-column: 2;
    grid-row: 3;
  }

  .sector-card--lavanderia {
    grid-column: 1;
    grid-row: 4;
  }

  .sector-card--gdo {
    grid-column: 2;
    grid-row: 4;
  }

  .site-footer {
    min-height: 324px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 120px 20px 30px;
  }

  .footer-logo {
    order: 1;
    width: 153px;
  }

  .contact {
    order: 2;
    margin-top: 20px;
    font-size: 11px;
    line-height: 1.65;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-logo,
  .motion-ready .sector-card.is-visible img,
  .motion-ready .contact-row.is-visible svg {
    animation: none;
  }

  .hero-slide,
  .slider-arrow,
  .slider-dot,
  .motion-ready .reveal-item {
    transition: none;
  }

  .motion-ready .reveal-item {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 701px) and (max-width: 1200px) {
  .site-header {
  }

  .hero {
    height: 68vw;
    width: 100%;
  }

  .intro {
    min-height: 440px;
  }

  .intro h1 {
    font-size: 38px;
  }

  .intro p {
    font-size: 23px;
  }

  .promo-banner {
    /*padding-bottom: 130px;*/
  }

  .promo-visual {
    min-height: clamp(520px, 56vw, 680px);
  }

  .promo-image {
    object-position: center top;
  }

  .promo-content {
    width: calc(100% - 120px);
  }

  .promo-title {
    max-width: 560px;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.12;
  }

  .promo-button {
    min-width: clamp(220px, 24vw, 292px);
    min-height: clamp(54px, 6vw, 72px);
    font-size: clamp(22px, 3vw, 30px);
  }

  .sectors-panel {
    width: calc(100% - 80px);
    min-height: 900px;
    margin-top: -130px;
    padding: 80px;
    z-index: 5;
  }

  .sector-grid {
    margin-top: 80px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 80px 50px;
  }

  .sector-card {
    height: 210px;
  }

  .sector-card img {
    height: 85px;
  }

  .sector-card h3 {
    font-size: 23px;
  }
}
