:root {
  --primary: #EF7F1A;
  --secondary: #FDF3EC;
  --dark: #0B1735;
  --text: #888885;
  --soft: #eadfd8;
  --white: #ffffff;
  --font-body: "Raleway", Arial, sans-serif;
  --font-heading: "Nunito", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--secondary);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

.exact-art {
  height: auto !important;
  object-fit: contain !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  letter-spacing: 0;
}

p {
  margin-bottom: 1rem;
}

.container {
  max-width: 1280px;
}

.section-light {
  background: var(--secondary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 243, 236, .94);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: 100px;
  padding: 14px 0;
}

.navbar-brand img {
  width: 170px;
  height: 70px;
  object-fit: contain;
}

.navbar-nav {
  gap: 34px;
}

.navbar .nav-link {
  color: rgba(11, 23, 53, .48);
  font-weight: 700;
  font-size: 14px;
  padding: 36px 0;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.dropdown-item:hover {
  color: var(--primary);
}

.dropdown-menu {
  border: 0;
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0 12px 28px rgba(11, 23, 53, .12);
  background: #fff8f3;
}

.dropdown-item {
  color: var(--dark);
  font-size: 14px;
  border-radius: 4px;
}

.mega-dropdown {
  position: static;
}

.mega-menu {
  left: 50%;
  top: calc(100% - 10px);
  display: block;
  width: 80vw;
  max-width: 1180px;
  min-width: 760px;
  margin-top: -18px;
  padding: 0;
  border-radius: 0;
  transform: translateX(-50%);
  background: #fff8f3;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

@media (min-width: 992px) {
  .mega-dropdown:hover > .mega-menu,
  .mega-dropdown:focus-within > .mega-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(10px);
  }
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 28px;
  padding: 30px;
}

.mega-menu h3 {
  margin: 0 0 14px;
  color: var(--dark);
  font-size: 15px;
  font-weight: 800;
}

.mega-menu .dropdown-item {
  padding: 8px 0;
  color: rgba(11, 23, 53, .62);
  font-weight: 700;
}

.mega-menu .dropdown-item:hover {
  background: transparent;
  color: var(--primary);
}

.mega-highlight {
  padding: 24px;
  background: var(--dark);
  color: rgba(255, 255, 255, .72);
}

.mega-highlight strong {
  display: block;
  color: #fff8f3;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.25;
}

.mega-highlight p {
  margin: 14px 0 18px;
}

.mega-highlight a {
  color: var(--primary);
  font-weight: 800;
}

.kitchen-breadcrumb {
  position: relative;
  z-index: 4;
  background: var(--dark);
  box-shadow: 0 16px 34px rgba(11, 23, 53, .14);
}

.kitchen-breadcrumb::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(239, 127, 26, .28), transparent 34%),
    linear-gradient(180deg, rgba(255, 248, 243, .08), rgba(255, 248, 243, 0));
}

.kitchen-breadcrumb-panel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 14px 0;
  color: rgba(255, 248, 243, .82);
}

.breadcrumb-kicker {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 248, 243, .16);
  border-radius: 999px;
  background: rgba(255, 248, 243, .08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kitchen-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.kitchen-breadcrumb li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: rgba(255, 248, 243, .68);
}

.kitchen-breadcrumb li + li::before {
  content: ">";
  margin-right: 10px;
  color: rgba(239, 127, 26, .85);
  font-weight: 800;
}

.kitchen-breadcrumb a {
  color: rgba(255, 248, 243, .72);
}

.kitchen-breadcrumb a:hover {
  color: var(--primary);
}

.kitchen-breadcrumb [aria-current="page"] {
  max-width: 100%;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
}

.breadcrumb-action {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-left: auto;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(239, 127, 26, .24);
}

.breadcrumb-action:hover {
  transform: translateY(-2px);
  background: #ff8d2b;
}

.hero-section {
  padding: 0px 0 92px;
}

.hero-divider {
  width: 55%;
  height: 1px;
  margin-left: auto;
  margin-bottom: 88px;
  background: linear-gradient(90deg, rgba(11, 23, 53, .25), var(--dark), rgba(11, 23, 53, .25));
}

.hero-title {
  font-weight: 300;
  font-size: clamp(38px, 3.1vw, 48px);
  line-height: 1.24;
  color: var(--dark);
  white-space: nowrap;
}

.hero-title span {
  display: inline-block;
  font-weight: 800;
  font-size: clamp(72px, 5.6vw, 92px);
}

.hero-title small {
  display: block;
  margin-top: 18px;
  font-size: clamp(38px, 3vw, 46px);
  font-weight: 300;
  white-space: normal;
}

.hero-copy {
  max-width: 470px;
  padding-top: 10px;
}

.hero-visual-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(330px, .86fr);
  gap: 30px;
  margin-top: 78px;
  align-items: start;
}

.hero-left,
.hero-right {
  position: relative;
}

.recreated-only {
  display: none !important;
}

.customers-pill {
  position: absolute;
  left: 0;
  top: -36px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 285px;
  padding: 0 0 22px;
  background: var(--secondary);
  border-radius: 0 0 34px 0;
  color: var(--primary);
  font-weight: 800;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 54px;
  height: 54px;
  margin-right: -10px;
  border-radius: 50%;
  border: 3px solid var(--white);
  object-fit: cover;
}

.heart-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.heart-row span {
  width: 18px;
  height: 18px;
  position: relative;
  transform: rotate(-45deg);
  background: var(--primary);
  border-radius: 3px;
}

.heart-row span::before,
.heart-row span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
}

.heart-row span::before {
  top: -9px;
  left: 0;
}

.heart-row span::after {
  left: 9px;
  top: 0;
}

.hero-main-img {
  width: 100%;
  height: 595px;
  object-fit: cover;
  border-radius: 0 28px 28px 28px;
}

.hero-main-group {
  width: min(1010px, 100%);
  height: auto;
  margin-top: -82px;
  max-width: none;
  border-radius: 0;
}

.hero-side-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.round-text {
  position: absolute;
  top: -86px;
  left: -98px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px dashed rgba(11, 23, 53, .25);
  display: grid;
  place-items: center;
  color: var(--dark);
  font-size: 12px;
  text-align: center;
  transform: rotate(23deg);
}

.round-text::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  right: -12px;
  top: 88px;
  background: rgba(11, 23, 53, .18);
  border-radius: 50%;
}

.hero-benefits {
  list-style: none;
  margin: 58px 0 0 92px;
  padding: 0;
}

.hero-benefits li {
  position: relative;
  margin: 0 0 30px;
  padding-left: 48px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.1vw, 31px);
  line-height: 1.2;
  color: var(--dark);
  font-weight: 300;
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--dark);
}

.consult-button,
.dark-button,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 17px 38px;
  font-weight: 800;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.consult-button {
  position: absolute;
  left: 29%;
  bottom: 63px;
  gap: 20px;
  min-width: 287px;
  padding: 16px 18px 16px 38px;
  color: var(--white);
  background: var(--primary);
  border-radius: 20px;
}

.consult-button span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dark);
}

.consult-button span img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.consult-button:hover,
.dark-button:hover,
.light-button:hover {
  transform: translateY(-3px);
}

.dark-button {
  margin-top: 42px;
  min-width: 315px;
  color: var(--white);
  background: var(--dark);
}

.dark-button.small,
.light-button.compact {
  min-width: 245px;
  margin-top: 0;
}

.light-button {
  color: var(--dark);
  background: #e9dfd8;
}

.stats-band {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  background: url("../images/exact/stats-section.webp") center / cover no-repeat;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 23, 53, .72);
}

.stats-band strong,
.stats-band span {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.05;
}

.stats-band strong {
  font-size: clamp(40px, 4.5vw, 58px);
}

.stats-band span {
  font-size: clamp(24px, 2.6vw, 36px);
}

.about-section {
  padding: 130px 0 108px;
}

.about-img {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-size: 14px;
  margin-bottom: 28px;
}

.eyebrow span {
  width: 34px;
  height: 4px;
  border-radius: 8px;
  background: var(--dark);
}

.about-section h2,
.products-section h2,
.section-heading h2,
.offerings-section h2,
.process-section h2,
.testimonial-section h2,
.projects-section h2,
.faq-section h2,
.contact-panel h2,
.footer-intro h2 {
  font-weight: 800;
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.28;
}

.products-section {
  padding: 86px 0 88px;
}

.product-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 32px;
  align-items: start;
}

.product-tabs {
  display: grid;
  margin-top: 0;
  padding-top: 0;
}

.product-tabs button {
  position: relative;
  width: 100%;
  min-height: 58px;
  padding: 16px 0 16px 88px;
  border-bottom: 1px solid rgba(11, 23, 53, .08);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background: transparent;
  font-weight: 800;
  color: rgba(11, 23, 53, .44);
  text-align: left;
  transition: color .25s ease;
}

.product-tabs button::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 38px;
  height: 7px;
  border-radius: 10px;
  background: rgba(11, 23, 53, .09);
  transform: translateY(-50%);
  transition: background-color .25s ease, width .25s ease;
}

.product-tabs button.active,
.product-tabs button:hover {
  color: var(--primary);
}

.product-tabs button.active::before,
.product-tabs button:hover::before {
  background: var(--primary);
}

.product-card {
  width: 100%;
  aspect-ratio: 476 / 314;
  object-fit: contain;
}

.view-link {
  grid-column: 3;
  grid-row: 2;
  order: 99;
  justify-self: center;
  align-self: center;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: .02em;
}

.why-section {
  position: relative;
  min-height: 520px;
  padding: 112px 0 116px;
  overflow: hidden;
  background: #eee7e2 url("../images/exact/why-banner.webp") center / cover no-repeat;
}

.why-section::before {
  display: none;
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
  display: none;
}

.section-heading {
  position: relative;
  max-width: 930px;
  margin: 0 auto 62px;
}

.section-heading p {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
}

.why-circles {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}

.why-circle {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff8f0;
  text-align: center;
  color: var(--text);
  font-weight: 500;
  line-height: 1.15;
}

.offerings-section {
  position: relative;
  padding: 82px 0 128px;
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 58px;
}

.offerings-section .offering-card > a:first-child {
  display: block;
}

.offerings-section .offering-card img,
.offerings-section .offering-card .exact-art,
.offerings-section .offering-card > img,
.offerings-section .offering-card > a:first-child img {
  display: block;
  width: 100%;
  height: 445px;
  object-fit: cover;
  margin-bottom: 24px;
}

.offering-card h3 {
  font-size: 24px;
  font-weight: 800;
}

.offering-card p {
  max-width: 320px;
}

.offering-card a {
  color: var(--primary);
  font-weight: 800;
}

.offering-slider.slick-initialized {
  display: block;
}

.offering-slider .slick-track {
  display: flex;
}

.offering-slider .slick-slide {
  height: auto;
  padding: 0 15px;
  opacity: 1;
}

.offering-slider .slick-slide > div,
.offering-slider .slick-slide .col-md-6 {
  height: 100%;
}

.offering-slider.slick-initialized .reveal,
.offering-slider.slick-initialized .slick-slide,
.offering-slider.slick-initialized .slick-slide > div,
.offering-slider.slick-initialized .slick-slide [class*="col-"] {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.offering-slider.slick-initialized .slick-slide [class*="col-"] {
  display: block;
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  padding-left: 0;
  padding-right: 0;
}

.offering-slider.slick-initialized .offering-card {
  height: 100%;
}

.slider-arrow {
  position: absolute;
  top: 49%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: #e8ded8;
  color: var(--dark);
  font-size: 0;
  line-height: 1;
  transition: background-color .25s ease, transform .25s ease;
  z-index: 3;
}

.slider-arrow svg {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-arrow:hover {
  background: #dfd4ce;
  transform: translateY(-2px);
}

.slider-arrow.prev {
  left: max(20px, calc((100vw - 1280px) / 2));
}

.slider-arrow.next {
  right: max(20px, calc((100vw - 1280px) / 2));
}

.feature-band {
  padding: 102px 0 118px;
  background: url("../images/exact/features-section.webp") center / cover no-repeat;
}

.feature-tile {
  min-height: 274px;
  padding: 56px 24px 34px;
  text-align: center;
  color: var(--white);
  background: rgba(94, 68, 43, .68);
  backdrop-filter: blur(9px);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
  border-radius: 50%;
  color: var(--dark);
  background: var(--secondary);
  font-size: 20px;
}

.feature-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.feature-tile h3 {
  color: var(--white);
  font-size: 27px;
  font-weight: 500;
}

.feature-tile p {
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  line-height: 1.45;
}

.process-section {
  position: relative;
  padding: 122px 0 104px;
  overflow: hidden;
}

.section-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 600;
}

.process-lines {
  position: relative;
  max-width: 1188px;
  margin: 72px auto 0;
  min-height: 0;
}

.process-lines::before {
  display: none;
}

.process-art {
  width: 100%;
  height: auto;
}

.process-mobile-art {
  display: none;
}

.process-step {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
}

.process-step span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
}

.step-1 { top: 38px; left: 53%; }
.step-2 { top: 132px; left: 14%; }
.step-3 { top: 226px; left: 62%; }
.step-4 { top: 320px; left: 22%; }
.step-5 { top: 414px; left: 58%; }
.step-6 { top: 508px; left: 9%; }

.dream-cta {
  min-height: 545px;
  display: flex;
  align-items: center;
  background: var(--primary) url("../images/exact/dream-cta.webp") center / cover no-repeat;
}

.cta-content {
  width: min(570px, 100%);
  color: var(--white);
  margin-left: 10px;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
}

.cta-content p {
  color: var(--white);
  max-width: 520px;
  line-height: 1.35;
  margin: 22px 0 52px;
}

.cta-content .light-button {
  min-width: 410px;
  background: #eee4dc;
}

.testimonial-section {
  position: relative;
  padding: 130px 0 118px;
}

.testimonial-slider {
  position: relative;
}

.testimonial-slider .slick-list,
.testimonial-slider .slick-track {
  min-height: 100%;
}

.testimonial-slider .slick-slide {
  height: auto;
}

.testimonial-slider .slick-slide > div {
  height: 100%;
}

.testimonial-slide {
  display: none;
  outline: 0;
}

.testimonial-slider:not(.slick-initialized) .testimonial-slide.active,
.testimonial-slider.slick-initialized .testimonial-slide {
  display: block;
}

.testimonial-photo-wrap {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}

.testimonial-photo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.testimonial-copy {
  position: relative;
  padding-top: 12px;
}

.testimonial-section blockquote {
  margin: 36px 0 52px;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: clamp(23px, 2.35vw, 32px);
  font-weight: 300;
  line-height: 1.45;
  text-align: center;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.testimonial-author strong {
  color: var(--dark);
  font-size: 22px;
}

.testimonial-author img {
  width: 94px;
  height: 94px;
  border-radius: 50%;
}

.testimonial-nav {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  max-width: 1060px;
  margin: 36px auto 0;
}

.testimonial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1;
  transition: color .25s ease, transform .25s ease;
}

.testimonial-arrow:hover {
  transform: translateX(2px);
}

.testimonial-prev {
  color: #e4d9d2;
}

.testimonial-next {
  color: var(--primary);
}

.projects-section {
  background: var(--secondary);
}

.projects-top {
  padding: 82px 0 0;
  background: linear-gradient(to bottom, var(--dark) 0 56%, transparent 56% 100%);
}

.projects-top .section-row h2 {
  color: #efe6df;
}

.project-row {
  margin-top: 32px;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 444px;
}

.project-card > img:first-child {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.project-card::after {
  display: none;
}

.project-card h3 {
  display: none;
}

.project-thumb {
  display: none;
}

.contact-band {
  position: relative;
  padding: 132px 0 26px;
}

.contact-panel {
  position: relative;
  padding: 108px 110px 66px;
  background: url("../images/exact/process-lines.webp") center / 100% 100% no-repeat;
  border-radius: 0;
}

.contact-panel::before {
  display: none;
}

.contact-panel h2 {
  margin-bottom: 74px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cec5bf;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--dark);
  padding: 0 0 8px;
  font-family: var(--font-body);
}

.contact-form textarea {
  height: 80px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--dark);
  opacity: .9;
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: var(--primary);
}

.footer-field-err {
  display: block;
  margin-top: 7px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-form .invalid-feedback {
  margin-top: 7px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.emailError:empty {
  display: none;
}

.contact-copy {
  padding-top: 170px;
}

.contact-copy h3 {
  font-size: 16px;
  font-weight: 800;
}

.contact-copy .dark-button {
  min-width: 240px;
  margin-top: 36px;
}

.faq-section {
  padding: 88px 0 118px;
}

.faq-list {
  margin-top: 78px;
}

.faq-item {
  border: 0;
  border-radius: 0;
  margin-bottom: 42px;
  background: var(--secondary);
  box-shadow: 0 1px 15px rgba(11, 23, 53, .16);
}

.faq-item .accordion-header {
  margin: 0;
}

.faq-item .accordion-button {
  position: relative;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 54px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--dark);
  text-align: left;
  font-weight: 800;
  box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
  color: var(--dark);
  background: transparent;
  box-shadow: none;
}

.faq-item .accordion-button::after {
  flex: 0 0 auto;
  display: block;
  width: 20px;
  height: 20px;
  margin-left: auto;
  border: 2px solid var(--dark);
  border-radius: 50%;
  background:
    linear-gradient(var(--dark), var(--dark)) center / 8px 2px no-repeat,
    linear-gradient(var(--dark), var(--dark)) center / 2px 8px no-repeat;
  transform: none;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.faq-item .accordion-button:not(.collapsed)::after {
  background: linear-gradient(var(--dark), var(--dark)) center / 8px 2px no-repeat;
}

.faq-answer {
  padding: 0 54px 28px;
  color: var(--text);
  background: transparent;
}

.faq-item .accordion-collapse {
  background: transparent;
}

.content-section {
  padding: 105px 0 82px;
  background: #E9E0D9;
}

.content-section h3 {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 800;
}

.content-section h3:not(:first-child) {
  margin-top: 56px;
}

.content-section h4 {
  margin: 20px 0 6px;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
}

.content-closing {
  margin-top: 44px;
  color: var(--dark);
  font-weight: 800;
}

.inner-hero,
.image-hero {
  position: relative;
  overflow: hidden;
}

.dark-detail-hero {
  padding: 132px 0 92px;
  background: var(--dark);
}

.dark-detail-hero::before {
  content: "MODULO";
  position: absolute;
  left: 8%;
  top: 10%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .06);
  font-family: var(--font-heading);
  font-size: clamp(84px, 17vw, 250px);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.dark-detail-hero h1,
.image-hero h1,
.projects-list-hero h1,
.contact-info-hero h1 {
  margin: 0;
  color: #f2e8df;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.18;
}

.hero-copy-card {
  position: relative;
  z-index: 1;
  padding: 44px 52px;
  background: #efe6df;
  color: var(--text);
  line-height: 1.75;
}

.hero-copy-card.dark {
  background: var(--dark);
  color: rgba(255, 255, 255, .72);
}

.hero-copy-card p:last-child {
  margin-bottom: 0;
}

.detail-copy {
  padding: 80px 0 28px;
}

.detail-copy p,
.service-detail p {
  margin-bottom: 22px;
  font-size: 16px;
}

.image-hero {
  min-height: 455px;
  display: flex;
  align-items: end;
  padding: 94px 0 0;
  background-position: center;
  background-size: cover;
}

.image-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 23, 53, .18);
}

.image-hero .container {
  position: relative;
  z-index: 1;
}

.image-hero h1 {
  padding-bottom: 80px;
}

.image-hero .hero-copy-card {
  margin-bottom: 0;
}

.service-detail {
  padding: 108px 0 58px;
}

.service-detail h2 {
  max-width: 1120px;
  margin: 28px 0 46px;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 800;
  line-height: 1.35;
}

.service-feature {
  margin-bottom: 42px;
}

.service-feature img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.orange-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.orange-list li {
  position: relative;
  padding-left: 42px;
  color: var(--text);
  font-weight: 700;
}

.orange-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 5px;
  border-radius: 8px;
  background: var(--primary);
}

.service-copy {
  margin-top: 36px;
}

.inner-products {
  padding-top: 70px;
}

.inner-products .product-tabs a {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 16px 0 16px 18px;
  border-bottom: 1px solid rgba(11, 23, 53, .08);
  color: rgba(11, 23, 53, .44);
  font-weight: 800;
}

.inner-products .product-tabs a span {
  width: 38px;
  height: 7px;
  border-radius: 10px;
  background: rgba(11, 23, 53, .09);
  transition: background-color .25s ease;
}

.inner-products .product-tabs a.active,
.inner-products .product-tabs a:hover {
  color: var(--primary);
}

.inner-products .product-tabs a.active span,
.inner-products .product-tabs a:hover span {
  background: var(--primary);
}

.inner-products .product-card {
  display: block;
  overflow: hidden;
}

.inner-products .product-card img {
  width: 100%;
}

.stat-row {
  padding: 28px 0 82px;
}

.stat-row strong,
.stat-row span {
  display: block;
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.05;
}

.stat-row strong {
  font-size: clamp(38px, 4vw, 58px);
}

.stat-row span {
  color: rgba(11, 23, 53, .62);
  font-size: clamp(24px, 2.6vw, 36px);
}

.inner-about {
  padding-top: 0px;
}

.inner-about h1 {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 800;
  line-height: 1.28;
}

.mission-section {
  padding: 12px 0 88px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.35fr .72fr;
  gap: 52px;
  align-items: stretch;
}

.mission-grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.mission-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background: #e7ded7;
}

.mission-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--dark);
  background: var(--secondary);
}

.mission-card h2 {
  font-size: 27px;
  font-weight: 800;
}

.projects-list-hero {
  padding: 90px 0 100px;
  background:
    linear-gradient(to bottom, var(--dark) 0 31%, transparent 31% 100%),
    var(--secondary);
}

.projects-heading {
  margin-bottom: 72px;
}

.projects-heading p {
  max-width: 570px;
  color: rgba(255, 255, 255, .72);
}

.project-list-card {
  height: 100%;
  background: #e7ded7;
}

.project-list-card img {
  width: 100%;
  aspect-ratio: 356 / 275;
  object-fit: cover;
}

.project-list-card div {
  padding: 26px 28px 30px;
}

.project-list-card h2 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 800;
}

.project-list-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 13px;
  line-height: 1.45;
}

.project-list-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.contact-info-hero {
  padding: 118px 0 58px;
  background: var(--dark);
  color: rgba(255, 255, 255, .72);
}

.contact-info-hero h1 {
  color: #f2e8df;
}

.contact-info-hero > .container > .row:first-child {
  align-items: flex-start;
}

.contact-info-hero > .container > .row:first-child p {
  max-width: 690px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
  line-height: 1.85;
}

.contact-info-grid {
  max-width: 1110px;
  margin-top: 72px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.contact-info-item span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  color: #9d9692;
}

.contact-info-item img {
  width: 20px;
  height: 20px;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item h2 {
  margin: 0 0 6px;
  color: #a29a95;
  font-size: 14px;
  font-weight: 700;
}

.contact-info-item p {
  max-width: 470px;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.contact-page-form {
  padding-top: 94px;
  padding-bottom: 92px;
}

.map-section {
  position: relative;
  overflow: hidden;
  background: var(--secondary);
}

.map-section iframe,
.map-section img {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
  object-fit: cover;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 94px 0 62px;
  background: var(--dark);
}

.footer-intro {
  position: relative;
  max-width: 720px;
  margin: 0 auto 82px;
}

.footer-wordmark {
  position: absolute;
  left: 50%;
  top: -128px;
  transform: translateX(-50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .06);
  font-family: var(--font-heading);
  font-size: clamp(100px, 15vw, 205px);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.footer-intro h2 {
  position: relative;
  color: #efe6df;
}

.footer-intro p,
.footer-links p,
.footer-links a {
  color: rgba(255, 255, 255, .45);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 30px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #efe6df;
  color: var(--dark);
  font-weight: 800;
}

.social-links img {
  width: 24px;
  height: 24px;
}

.footer-links h3 {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  margin-bottom: 15px;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 16px;
  line-height: 1.7;
}

.footer-contact span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  min-width: 22px;
  padding-top: 3px;
}

.footer-contact img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact a,
.contact-info-item a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover,
.contact-info-item a:hover {
  color: var(--primary);
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding: 18px 58px;
  background: #e7ded7;
  color: var(--text);
  font-weight: 500;
}

.copyright a {
  text-decoration: underline;
}

.copyright p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}

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

.thank-you-page {
  min-height: 100vh;
  background: var(--secondary);
}

.thank-you-main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 18px;
}

.thank-you-card {
  position: relative;
  width: min(720px, 100%);
  padding: 64px 54px 58px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(239, 127, 26, .14), transparent 38%),
    var(--dark);
  text-align: center;
}

.thank-you-card::before {
  content: "MODULO";
  position: absolute;
  left: 50%;
  top: -28px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .06);
  font-family: var(--font-heading);
  font-size: clamp(72px, 15vw, 156px);
  font-weight: 800;
  line-height: 1;
  transform: translateX(-50%);
}

.thank-you-logo {
  position: relative;
  z-index: 1;
  width: 190px;
  height: auto;
  margin-bottom: 34px;
}

.thank-you-card h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: #efe6df;
  font-size: clamp(36px, 5vw, 58px);
}

.thank-you-card p {
  position: relative;
  z-index: 1;
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
  line-height: 1.7;
}

.thank-you-card strong {
  color: #efe6df;
}

.thank-you-note {
  padding-top: 8px;
  font-size: 15px !important;
}

.thank-you-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 54px;
  margin-top: 22px;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: background-color .25s ease, transform .25s ease;
}

.thank-you-button:hover {
  background: #d96f12;
  color: var(--white);
  transform: translateY(-2px);
}

@media (min-width: 992px) {
  .image-hero .hero-copy-card {
    margin-bottom: -80px;
    z-index: 9999999;
  }

  .inner-hero,
  .image-hero {
    position: relative;
    overflow: initial;
  }

  .dark-detail-hero {
    padding: 194px 0 92px;
    background: var(--dark);
  }

  .hero-copy-card {
    position: relative;
    z-index: 1;
    padding: 44px 52px;
    background: #efe6df;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: -250px;
  }

  .dark-detail-hero h1,
  .image-hero h1,
  .projects-list-hero h1,
  .contact-info-hero h1 {
    margin: 50px 0 0;
    color: #f2e8df;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.18;
  }

  .dark-detail-hero::before {
    content: "MODULO";
    position: absolute;
    left: 6%;
    top: 10%;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .06);
    font-family: var(--font-heading);
    font-size: clamp(84px, 17vw, 250px);
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
  }

  .detail-copy {
    padding: 120px 0 28px;
  }

  .footer-wordmark {
    position: absolute;
    left: 50%;
    top: -180px;
    transform: translateX(-50%);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .06);
    font-family: var(--font-heading);
    font-size: clamp(100px, 15vw, 215px);
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
  }

  .footer-intro h2 {
    position: relative;
    color: #efe6df;
    margin-top: 65px;
  }
}

@media (max-width: 1199px) {
  .navbar-nav {
    gap: 18px;
  }

  .hero-visual-grid {
    grid-template-columns: 1fr;
  }

  .hero-main-img,
  .hero-side-img {
    height: 500px;
  }

  .consult-button {
    position: static;
    margin-top: 28px;
    justify-self: start;
  }

  .hero-benefits {
    margin-left: 0;
  }

  .why-circles {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step {
    position: static;
    margin-bottom: 26px;
  }

  .process-lines {
    min-height: 0;
    max-width: 620px;
  }

  .process-lines::before {
    inset: 0 auto 0 16px;
    width: 1px;
    height: 100%;
    background: #d9cdc5;
  }

  .dream-cta {
    background-position: center right -280px;
  }

  .contact-panel {
    padding: 80px 60px 60px;
  }
}

@media (max-width: 991px) {
  .navbar {
    min-height: 90px;
  }

  .navbar .nav-link {
    color: rgba(11, 23, 53, .48);
    font-weight: 700;
    font-size: 14px;
    padding: 5px;
  }

  .navbar-brand img {
    width: 165px;
    height: auto;
  }

  .navbar-collapse {
    padding: 18px 0 10px;
  }

  .mega-menu {
    display: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .mega-menu.show {
    display: block;
  }

  .mega-dropdown.is-open > .mega-menu {
    display: block;
  }

  .mega-menu-inner {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .kitchen-breadcrumb-panel {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    padding: 18px 0;
  }

  .kitchen-breadcrumb ol {
    gap: 8px;
    font-size: 13px;
  }

  .breadcrumb-action {
    margin-left: 0;
  }

  .hero-divider {
    width: 100%;
    margin-bottom: 54px;
  }

  .hero-title {
    white-space: normal;
  }

  .hero-title span {
    font-size: clamp(54px, 12vw, 78px);
  }

  .hero-title small {
    font-size: clamp(32px, 7vw, 42px);
  }

  .about-section,
  .products-section,
  .offerings-section,
  .testimonial-section,
  .faq-section,
  .content-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .product-tabs {
    margin: 0;
  }

  .product-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-tabs {
    grid-column: 1 / -1;
  }

  .view-link {
    grid-column: 2;
    grid-row: auto;
    justify-self: end;
  }

  .why-circles {
    gap: 18px;
  }

  .feature-band {
    padding: 80px 0;
  }

  .dream-cta {
    position: relative;
    min-height: 560px;
    background-image: url("../images/exact/dream-cta.webp");
    background-size: cover;
    background-position: center;
  }

  .dream-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 23, 53, .48);
    pointer-events: none;
  }

  .dream-cta .container {
    position: relative;
    z-index: 1;
  }

  .contact-copy {
    padding-top: 0;
  }

  .contact-panel {
    padding: 72px 44px 54px;
    background: none;
  }

  .contact-panel::before {
    display: none;
  }

  .dark-detail-hero {
    padding: 90px 0 70px;
  }

  .image-hero {
    min-height: 520px;
    padding-top: 70px;
  }

  .image-hero h1 {
    padding-bottom: 20px;
  }

  .image-hero .hero-copy-card {
    margin-bottom: 0;
  }

  .hero-copy-card {
    padding: 34px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .projects-list-hero {
    background:
      linear-gradient(to bottom, var(--dark) 0 18%, transparent 18% 100%),
      var(--secondary);
  }

  .projects-heading p {
    color: var(--text);
  }

  .copyright {
    flex-direction: column;
    text-align: center;
    padding: 18px 24px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .hero-section {
    padding-bottom: 70px;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.18;
  }

  .hero-title span {
    display: block;
    font-size: clamp(44px, 12.5vw, 54px);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-title small {
    font-size: clamp(30px, 8.2vw, 36px);
    line-height: 1.18;
  }

  .hero-visual-grid {
    margin-top: 58px;
  }

  .customers-pill {
    position: relative;
    top: auto;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }

  .avatar-stack img {
    width: 46px;
    height: 46px;
  }

  .hero-main-img,
  .hero-side-img {
    height: 360px;
    border-radius: 20px;
  }

  .round-text {
    display: none;
  }

  .consult-button,
  .cta-content .light-button,
  .dark-button {
    width: 100%;
    min-width: 0;
  }

  .consult-button {
    border-radius: 0 16px 16px 0;
    gap: 20px;
    padding-left: 24px;
  }

  .stats-band {
    padding: 62px 0;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-card {
    width: 100%;
    max-height: 260px;
  }

  .view-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: end;
  }

  .why-section {
    padding: 78px 0;
  }

  .why-circles {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .offerings-section .offering-card img,
  .offerings-section .offering-card .exact-art,
  .offerings-section .offering-card > img,
  .offerings-section .offering-card > a:first-child img {
    height: 320px;
  }

  .slider-arrow {
    width: 46px;
    height: 46px;
  }

  .slider-arrow.prev {
    left: 16px;
  }

  .slider-arrow.next {
    right: 16px;
  }

  .feature-tile {
    min-height: 230px;
  }

  .process-section {
    padding: 78px 0;
  }

  .process-lines {
    width: min(100%, 430px);
    margin-top: 42px;
  }

  .process-art {
    display: none;
  }

  .process-mobile-art {
    position: relative;
    display: grid;
    gap: 16px;
    width: 100%;
    min-height: 0;
    padding-left: 18px;
    background: none;
  }

  .process-mobile-art::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: #ddd2cb;
  }

  .mobile-process-step {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    white-space: normal;
  }

  .mobile-process-step span {
    display: grid;
    place-items: center;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: var(--white);
    background: var(--dark);
    font-size: 10px;
    line-height: 1;
  }

  .testimonial-section blockquote {
    text-align: left;
  }

  .testimonial-author {
    justify-content: flex-start;
  }

  .testimonial-photo-wrap img {
    height: 460px;
  }

  .projects-top {
    padding-top: 72px;
    background: linear-gradient(to bottom, var(--dark) 0 43%, transparent 43% 100%);
  }

  .contact-band {
    padding-top: 80px;
  }

  .contact-panel {
    padding: 52px 26px;
    border-radius: 0 32px 32px 32px;
  }

  .contact-panel h2 {
    margin-bottom: 38px;
  }

  .faq-item {
    margin-bottom: 24px;
  }

  .faq-item .accordion-button,
  .faq-answer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .dark-detail-hero h1,
  .image-hero h1,
  .projects-list-hero h1,
  .contact-info-hero h1 {
    font-size: 34px;
  }

  .service-detail,
  .inner-products,
  .projects-list-hero,
  .contact-info-hero {
    padding-top: 70px;
  }

  .contact-info-grid {
    margin-top: 46px;
  }

  .contact-info-item {
    gap: 12px;
  }

  .service-feature img,
  .mission-grid img {
    height: auto;
  }

  .map-section iframe,
  .map-section img {
    height: 300px;
  }

  .footer-intro {
    margin-bottom: 52px;
  }
}

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 26px;
  z-index: 9999;
  display: grid;
  gap: 12px;
}

.floating-action {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--dark);
  box-shadow: 0 14px 30px rgba(11, 23, 53, .22);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease, visibility .25s ease;
}

.floating-action svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.floating-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(11, 23, 53, .28);
}

.whatsapp-action {
  background: #25d366;
}

.back-to-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .floating-actions {
    right: 16px;
    bottom: 18px;
    gap: 10px;
  }

  .floating-action {
    width: 46px;
    height: 46px;
  }

  .floating-action svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .breadcrumb-kicker,
  .breadcrumb-action {
    width: 100%;
  }

  .kitchen-breadcrumb ol {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .kitchen-breadcrumb li {
    line-height: 1.35;
  }

  .kitchen-breadcrumb li + li::before {
    display: none;
  }

  .why-circles {
    grid-template-columns: 1fr;
  }

  .why-circle {
    max-width: 220px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-benefits li {
    padding-left: 38px;
    margin-bottom: 20px;
  }

  .hero-benefits li::before {
    width: 16px;
    height: 16px;
  }

  .project-card,
  .project-card > img:first-child {
    min-height: 360px;
    height: auto;
  }
}
