@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");

@font-face {
  font-family: "Rebelton Extended";
  src: url("../assets/fonts/REBELTON-Extended.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rebelton";
  src: url("../assets/fonts/REBELTON-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #030303;
  --white: #ffffff;
  --font-heading: "Rebelton Extended", "Rebelton", "Montserrat", Arial, sans-serif;
  --font-body: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #232323;
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

.page-frame {
  width: calc(100% - 28px);
  margin: 14px auto 0;
  background: var(--black);
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  min-height: 120px;
  padding: 0 clamp(34px, 4vw, 82px);
  background: var(--black);
}

.brand-link {
  justify-self: start;
}

.brand-logo {
  display: block;
  width: clamp(215px, 14vw, 265px);
  height: auto;
}

.brand-logo--footer {
  width: clamp(245px, 17vw, 320px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(35px, 3.9vw, 74px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  font-size: clamp(13px, 1.02vw, 19px);
  font-weight: 500;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 21px 27px;
  background: var(--white);
  color: #0c0c0c;
  font-size: clamp(14px, 1.06vw, 19px);
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.primary-button:hover,
.primary-button:focus-visible {
  background: #e7e7e7;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(850px, calc(100svh - 70px));
  overflow: hidden;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("../assets/images/hero-showroom.webp");
  background-position: center;
  background-size: cover;
}

.hero__shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.94) 100%),
    linear-gradient(90deg, #030303 0%, #030303 19%, rgba(3, 3, 3, 0.96) 32%, rgba(3, 3, 3, 0.7) 49%, rgba(3, 3, 3, 0.12) 75%, rgba(3, 3, 3, 0.05) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(980px, 68%);
  padding: 74px 0 122px clamp(80px, 8.25vw, 170px);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 clamp(80px, 7vw, 136px);
  font-size: clamp(18px, 1.47vw, 28px);
  font-weight: 400;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.hero__eyebrow::before {
  width: 1px;
  height: 42px;
  background: currentColor;
  content: "";
  flex: 0 0 auto;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(48px, 3.05vw, 64px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero__copy {
  max-width: 900px;
  margin: 38px 0 0;
  font-size: clamp(18px, 1.42vw, 29px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 55px;
  margin-top: 66px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 456px;
  padding: 22px 30px;
  background: var(--white);
  color: #050505;
  font-size: clamp(17px, 1.42vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  transition: background-color 180ms ease;
}

.button-arrow {
  width: 34px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 2.2;
}

.text-link {
  position: relative;
  padding: 10px 0;
  font-size: clamp(17px, 1.42vw, 28px);
  line-height: 1.2;
  white-space: nowrap;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}

.values-section {
  position: relative;
  z-index: 3;
  margin-top: -58px;
  padding: 132px clamp(28px, 4vw, 78px) 66px;
  background: #fff;
  color: #050505;
  clip-path: polygon(0 0, 50% 58px, 100% 0, 100% 100%, 0 100%);
}

.values-section__inner {
  width: min(1475px, 100%);
  margin: 0 auto;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  font-size: clamp(16px, 1.2vw, 21px);
  line-height: 1;
}

.section-kicker::before {
  width: 1px;
  height: 33px;
  background: currentColor;
  content: "";
}

.values-section h2 {
  margin: 44px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(36px, 2.45vw, 50px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.values-section__intro {
  max-width: 1450px;
  margin: 38px 0 0;
  font-size: clamp(18px, 1.43vw, 29px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.002em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
  margin-top: 48px;
}

.value-card {
  position: relative;
  min-height: 138px;
  overflow: hidden;
  border: 0;
  background: #efefef;
  transition: background-color 180ms ease, min-height 220ms ease;
}

.value-card[open] {
  min-height: 440px;
}

.value-card__trigger {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 138px;
  padding: 24px 38px 24px 34px;
  border-radius: 0;
  color: #050505;
  cursor: pointer;
  column-gap: 28px;
  text-decoration: none;
}

.value-card__trigger:hover,
.value-card__trigger:focus-visible {
  background: #e7e7e7;
  text-decoration: none;
}

.value-card__trigger > svg {
  display: none;
}

.value-card__number {
  font-family: var(--font-heading);
  font-size: clamp(48px, 3.05vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.value-card__title {
  display: block;
  font-size: clamp(13px, 1vw, 19px);
  font-weight: 600;
  line-height: 1.42;
  text-transform: uppercase;
}

.value-card__plus {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 17px;
  height: 17px;
}

.value-card__plus::before,
.value-card__plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.value-card__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.value-card[open] .value-card__plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.value-card__content {
  padding: 16px 38px 36px 46px;
  font-size: clamp(16px, 1.05vw, 21px);
  line-height: 1.52;
}

.value-card__content p {
  margin: 0;
}

.values-section__cta {
  display: table;
  margin: 53px auto 0;
  padding: 16px 29px;
  background: #050505;
  color: #fff;
  font-size: clamp(17px, 1.28vw, 24px);
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: background-color 180ms ease;
}

.values-section__cta:hover,
.values-section__cta:focus-visible {
  background: #262626;
}

.kitchen-worlds {
  padding: 68px clamp(28px, 4vw, 78px) 82px;
  background: #030303;
  color: #fff;
}

.kitchen-worlds__inner {
  width: min(1510px, 100%);
  margin: 0 auto;
}

.kitchen-worlds__kicker {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 0;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.2;
}

.kitchen-worlds__kicker::before {
  width: 1px;
  height: 36px;
  background: currentColor;
  content: "";
}

.kitchen-worlds h2 {
  margin: 42px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(35px, 2.45vw, 50px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.kitchen-worlds__intro {
  max-width: 1420px;
  margin: 38px 0 0;
  font-size: clamp(18px, 1.42vw, 28px);
  line-height: 1.48;
}

.kitchen-worlds__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  gap: 16px;
}

.kitchen-card {
  display: flex;
  min-width: 0;
  padding: 13px 13px 22px;
  background: #fff;
  color: #050505;
  flex-direction: column;
}

.kitchen-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
}

.kitchen-card__content {
  display: flex;
  padding: 15px 5px 0;
  flex: 1;
  flex-direction: column;
}

.kitchen-card h3 {
  margin: 0;
  font-size: clamp(18px, 1.28vw, 24px);
  font-weight: 600;
  line-height: 1.2;
}

.kitchen-card h3::before {
  display: block;
  width: 34px;
  height: 1px;
  margin-bottom: 9px;
  background: currentColor;
  content: "";
}

.kitchen-card__content > p {
  min-height: 2.9em;
  margin: 5px 0 0;
  font-size: clamp(13px, 0.95vw, 17px);
  line-height: 1.45;
}

.kitchen-card__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  gap: 10px;
}

.kitchen-card__features span {
  overflow: hidden;
  padding: 8px 7px;
  background: #050505;
  color: #fff;
  font-size: clamp(8px, 0.62vw, 11px);
  line-height: 1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kitchen-card__content > a {
  position: relative;
  width: fit-content;
  margin-top: 25px;
  padding: 5px 0;
  font-size: clamp(15px, 1.05vw, 19px);
  font-weight: 500;
}

.kitchen-card__content > a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}

.kitchen-card__content > a:hover,
.kitchen-card__content > a:focus-visible {
  opacity: 0.62;
}

.kitchen-card a:focus-visible {
  outline-color: #050505;
}

.project-cta {
  min-height: 320px;
  padding: 48px clamp(28px, 4vw, 78px);
  background: #fff;
  color: #050505;
}

.project-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: min(1655px, 100%);
  min-height: 224px;
  margin: 0 auto;
  gap: 70px;
}

.project-cta h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(34px, 2.38vw, 49px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.project-cta p {
  margin: 22px 0 0;
  font-size: clamp(18px, 1.55vw, 31px);
  line-height: 1.48;
}

.project-cta a {
  padding: 18px 27px;
  background: #050505;
  color: #fff;
  font-size: clamp(17px, 1.32vw, 25px);
  line-height: 1.25;
  white-space: nowrap;
  transition: background-color 180ms ease;
}

.project-cta a:hover,
.project-cta a:focus-visible {
  background: #262626;
}

.journey-section {
  position: relative;
  min-height: 885px;
  overflow: hidden;
  padding: 84px clamp(28px, 4vw, 78px) 76px;
  background: #030303;
}

.journey-section__media,
.journey-section__shade {
  position: absolute;
  inset: 0;
}

.journey-section__media {
  left: 54%;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: #161616;
}

.journey-section__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.journey-section__shade {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.08) 35%, #030303 89%),
    linear-gradient(90deg, #030303 0%, #030303 46%, rgba(3, 3, 3, 0.9) 57%, rgba(3, 3, 3, 0.18) 83%, rgba(3, 3, 3, 0.08) 100%);
}

.journey-section__inner {
  position: relative;
  z-index: 2;
  width: min(1645px, 100%);
  margin: 0 auto;
}

.journey-section__kicker {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 0;
  font-size: clamp(17px, 1.28vw, 25px);
}

.journey-section__kicker::before {
  width: 1px;
  height: 47px;
  background: currentColor;
  content: "";
}

.journey-section h2 {
  max-width: 930px;
  margin: 43px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(37px, 2.5vw, 51px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.journey-section__intro {
  margin: 30px 0 0;
  font-size: clamp(20px, 1.52vw, 30px);
  line-height: 1.48;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 66px;
}

.journey-card {
  min-height: 306px;
  padding: 36px 33px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(3, 3, 3, 0.68);
}

.journey-card h3 {
  margin: 0;
  font-size: clamp(24px, 1.72vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.journey-card p {
  margin: 24px 0 0;
  font-size: clamp(17px, 1.18vw, 23px);
  line-height: 1.44;
}

.showrooms-section {
  padding: 57px clamp(28px, 4vw, 78px) 59px;
  background: #fff;
  color: #050505;
}

.showrooms-section__inner {
  display: grid;
  grid-template-columns: minmax(520px, 0.93fr) minmax(0, 1fr);
  align-items: center;
  width: min(1595px, 100%);
  margin: 0 auto;
  gap: clamp(45px, 4vw, 75px);
}

.showroom-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 653px;
}

.showroom-visual {
  position: relative;
  display: grid;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #4b4b4b;
  place-items: center;
}

.showroom-visual--2 {
  background: #5a5a5a;
}

.showroom-visual > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.showroom-visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.96));
  content: "";
}

.showroom-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 28px;
  left: 24px;
  z-index: 2;
  display: flex;
  padding-left: 12px;
  border-left: 2px solid #fff;
  color: #fff;
  font-size: clamp(13px, 0.95vw, 19px);
  line-height: 1.45;
  flex-direction: column;
}

.showroom-visual figcaption strong {
  font-weight: 500;
}

.showrooms-section__content {
  align-self: center;
}

.showrooms-section__kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  font-size: clamp(17px, 1.28vw, 25px);
}

.showrooms-section__kicker::before {
  width: 1px;
  height: 49px;
  background: currentColor;
  content: "";
}

.showrooms-section h2 {
  margin: 51px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(30px, 1.82vw, 38px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showrooms-section__copy {
  max-width: 760px;
  margin: 76px 0 0;
  font-size: clamp(19px, 1.48vw, 30px);
  line-height: 1.42;
}

.showrooms-section__content > a {
  display: table;
  margin-top: 86px;
  padding: 18px 34px;
  background: #050505;
  color: #fff;
  font-size: clamp(17px, 1.28vw, 25px);
  line-height: 1.2;
  transition: background-color 180ms ease;
}

.showrooms-section__content > a:hover,
.showrooms-section__content > a:focus-visible {
  background: #262626;
}

.testimonials-faq-section {
  padding: 76px clamp(28px, 4vw, 78px) 100px;
  background: #030303;
  color: #fff;
}

.testimonials-faq-section__inner {
  width: min(1595px, 100%);
  margin: 0 auto;
}

.testimonials-faq-section__kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  font-size: clamp(17px, 1.22vw, 24px);
  line-height: 1.2;
}

.testimonials-faq-section__kicker::before {
  width: 1px;
  height: 45px;
  background: currentColor;
  content: "";
  flex: 0 0 auto;
}

.testimonials-faq-section h2 {
  margin: 48px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(34px, 2.32vw, 47px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin-top: 65px;
  gap: clamp(26px, 4.2vw, 80px);
}

.testimonial-card {
  position: relative;
  display: grid;
  aspect-ratio: 1.58 / 1;
  overflow: hidden;
  background: #4a4a4a;
  place-items: center;
}

.testimonial-card--2 {
  background: #5a5a5a;
}

.testimonial-card > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card::before {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  content: "";
}

.testimonial-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
}

.testimonial-card__play svg {
  display: block;
  width: 100%;
  height: 100%;
}

.testimonial-card__play circle {
  fill: rgba(3, 3, 3, 0.88);
}

.testimonial-card__play path {
  fill: #fff;
}

.faq-block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1fr);
  align-items: start;
  margin-top: 92px;
  gap: clamp(70px, 8vw, 150px);
}

.faq-block__intro > p:not(.testimonials-faq-section__kicker) {
  max-width: 720px;
  margin: 34px 0 0;
  font-size: clamp(19px, 1.5vw, 29px);
  line-height: 1.45;
  text-align: left;
}

.faq-block__intro > a {
  display: table;
  margin-top: 72px;
  padding: 18px 30px;
  background: #fff;
  color: #050505;
  font-size: clamp(17px, 1.28vw, 25px);
  line-height: 1.2;
  transition: background-color 180ms ease;
}

.faq-block__intro > a:hover,
.faq-block__intro > a:focus-visible {
  background: #e7e7e7;
}

.faq-accordion {
  padding-top: 65px;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.46);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
}

.faq-item__trigger {
  display: flex;
  width: 100%;
  min-height: 66px;
  padding: 16px 0;
  border-radius: 0;
  color: #fff;
  font-size: clamp(15px, 1.1vw, 21px);
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.value-card__trigger,
.faq-item__trigger {
  list-style: none;
}

.value-card__trigger::-webkit-details-marker,
.faq-item__trigger::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__trigger:hover,
.faq-item__trigger:focus-visible {
  text-decoration: none;
}

.faq-item__trigger svg {
  flex: 0 0 auto;
}

.faq-item__content {
  padding: 0 44px 22px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(14px, 0.98vw, 18px);
  line-height: 1.55;
}

.faq-item__content p {
  margin: 0;
}

.story-section {
  padding: 54px clamp(28px, 4vw, 78px);
  background: #fff;
  color: #050505;
}

.story-section__inner {
  display: grid;
  grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
  align-items: center;
  width: min(1510px, 100%);
  margin: 0 auto;
  gap: clamp(70px, 9vw, 160px);
}

.story-video {
  display: flex;
  min-height: 535px;
  padding: 34px;
  background: #efefef;
  font-size: clamp(17px, 1.1vw, 21px);
  line-height: 1.35;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.story-video span,
.story-video strong {
  display: block;
  max-width: 220px;
}

.story-video span {
  font-weight: 500;
}

.story-video strong {
  font-weight: 600;
}

.story-section__kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  font-size: clamp(17px, 1.22vw, 24px);
}

.story-section__kicker::before {
  width: 1px;
  height: 45px;
  background: currentColor;
  content: "";
}

.story-section h2 {
  margin: 40px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(36px, 2.55vw, 51px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.story-section__copy {
  max-width: 880px;
  margin-top: 32px;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.38;
}

.story-section__copy p {
  margin: 0;
}

.story-section__copy p + p {
  margin-top: 32px;
}

.final-cta {
  padding: 70px clamp(28px, 4vw, 78px) 88px;
  background: #030303;
  color: #fff;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(540px, 1.35fr);
  align-items: center;
  width: min(1510px, 100%);
  margin: 0 auto;
  gap: clamp(70px, 9vw, 155px);
}

.final-cta h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(36px, 2.5vw, 50px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.final-cta__content p {
  max-width: 520px;
  margin: 32px 0 0;
  font-size: clamp(18px, 1.32vw, 25px);
  line-height: 1.42;
}

.final-cta__content a {
  display: table;
  margin-top: 48px;
  padding: 17px 28px;
  background: #fff;
  color: #050505;
  font-size: clamp(17px, 1.22vw, 24px);
  line-height: 1.2;
  transition: background-color 180ms ease;
}

.final-cta__content a:hover,
.final-cta__content a:focus-visible {
  background: #e7e7e7;
}

.final-cta__form {
  position: relative;
  aspect-ratio: 1.72 / 1;
  min-height: 330px;
  overflow: hidden;
  background: #303030;
}

.final-cta__form iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
}

.site-footer {
  padding: 72px clamp(28px, 4vw, 78px) 34px;
  background: #fff;
  color: #050505;
}

.site-footer__inner {
  width: min(1510px, 100%);
  margin: 0 auto;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(290px, 1.55fr) repeat(3, minmax(170px, 0.7fr));
  padding-bottom: 68px;
  gap: clamp(38px, 5vw, 90px);
}

.site-footer__intro > a {
  display: table;
}

.site-footer__intro p {
  max-width: 310px;
  margin: 28px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1.35;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.site-footer__column {
  display: flex;
  align-items: flex-start;
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.7;
  flex-direction: column;
}

.site-footer__label {
  margin: 0 0 20px;
  color: #777;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer__column a {
  position: relative;
  width: fit-content;
}

.site-footer__column a::after,
.site-footer__legal a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-footer__column a:hover::after,
.site-footer__column a:focus-visible::after,
.site-footer__legal a:hover::after,
.site-footer__legal a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-footer address {
  font-style: normal;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid #cfcfcf;
  color: #555;
  font-size: clamp(12px, 0.84vw, 15px);
  gap: 30px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 30px;
}

.site-footer__legal a {
  position: relative;
}

.site-footer a:focus-visible {
  outline-color: #050505;
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

/* Give the wide desktop layout a little more rhythm without stretching tablet
   and mobile views. */
@media (min-width: 1281px) {
  .site-header {
    min-height: 132px;
  }

  .desktop-nav a,
  .header-cta {
    font-size: clamp(13px, 0.92vw, 17px);
  }

  .hero__content {
    padding-top: 88px;
    padding-bottom: 146px;
  }

  .hero__eyebrow {
    font-size: clamp(17px, 1.3vw, 24px);
  }

  .hero h1 {
    font-size: clamp(41px, 2.5vw, 52px);
  }

  .hero__copy {
    font-size: clamp(17px, 1.25vw, 25px);
  }

  .primary-button,
  .text-link {
    font-size: clamp(16px, 1.2vw, 24px);
  }

  .values-section {
    padding-top: 148px;
    padding-bottom: 88px;
  }

  .values-section h2,
  .kitchen-worlds h2,
  .journey-section h2,
  .testimonials-faq-section h2,
  .story-section h2,
  .final-cta h2 {
    font-size: clamp(32px, 1.95vw, 40px);
  }

  .values-section__intro,
  .kitchen-worlds__intro,
  .journey-section__intro,
  .showrooms-section__copy,
  .faq-block__intro > p:not(.testimonials-faq-section__kicker) {
    font-size: clamp(17px, 1.28vw, 25px);
  }

  .section-kicker,
  .kitchen-worlds__kicker,
  .journey-section__kicker,
  .showrooms-section__kicker,
  .testimonials-faq-section__kicker,
  .story-section__kicker {
    font-size: clamp(15px, 1.06vw, 20px);
  }

  .value-card__title,
  .kitchen-card h3 {
    font-size: clamp(16px, 1.02vw, 19px);
  }

  .kitchen-worlds {
    padding-top: 90px;
    padding-bottom: 106px;
  }

  .project-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .project-cta h2,
  .showrooms-section h2 {
    font-size: clamp(30px, 1.85vw, 38px);
  }

  .project-cta p {
    font-size: clamp(17px, 1.35vw, 27px);
  }

  .values-section__cta,
  .project-cta a,
  .showrooms-section__content > a,
  .faq-block__intro > a,
  .final-cta__content a {
    font-size: clamp(16px, 1.1vw, 21px);
  }

  .journey-section {
    padding-top: 108px;
    padding-bottom: 100px;
  }

  .journey-card h3 {
    font-size: clamp(20px, 1.35vw, 27px);
  }

  .journey-card p,
  .value-card__content,
  .story-section__copy,
  .final-cta__content p {
    font-size: clamp(16px, 1.08vw, 21px);
  }

  .faq-item__trigger {
    font-size: clamp(14px, 1vw, 18px);
  }

  .faq-item__content {
    font-size: clamp(13px, 0.9vw, 16px);
  }

  .showrooms-section {
    padding-top: 82px;
    padding-bottom: 84px;
  }

  .testimonials-faq-section {
    padding-top: 104px;
    padding-bottom: 128px;
  }

  .story-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .final-cta {
    padding-top: 96px;
    padding-bottom: 112px;
  }

  .site-footer {
    padding-top: 92px;
  }
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-right: 66px;
  }

  .mobile-nav {
    position: absolute;
    right: clamp(34px, 4vw, 82px);
    display: block;
  }

  .mobile-nav summary {
    display: grid;
    width: 32px;
    height: 28px;
    cursor: pointer;
    list-style: none;
    place-content: center;
    gap: 8px;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    display: block;
    width: 29px;
    height: 1px;
    background: #fff;
    transition: transform 180ms ease;
  }

  .mobile-nav[open] summary span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .mobile-nav[open] summary span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav nav {
    position: absolute;
    top: 54px;
    right: 0;
    display: flex;
    width: min(360px, calc(100vw - 56px));
    padding: 24px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.16);
    flex-direction: column;
    gap: 20px;
  }

  .mobile-nav nav > a:not(.mobile-nav__cta) {
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .mobile-nav__cta {
    padding: 15px 18px;
    background: #fff;
    color: #050505;
    text-align: center;
  }

  .hero__content {
    width: min(900px, 80%);
  }

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

  .project-cta__inner {
    gap: 35px;
  }

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

  .journey-section__media {
    left: 47%;
  }

  .showrooms-section__inner {
    grid-template-columns: 1fr;
  }

  .showroom-visuals {
    min-height: 560px;
  }

  .showrooms-section__content {
    padding: 10px 0 20px;
  }

  .showrooms-section__copy,
  .showrooms-section__content > a {
    margin-top: 42px;
  }

  .testimonial-grid {
    width: 100%;
  }

  .faq-block {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .faq-accordion {
    padding-top: 50px;
  }

  .story-section__inner {
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
    gap: 55px;
  }

  .story-video {
    min-height: 470px;
  }

  .story-section h2 br {
    display: none;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .final-cta__form {
    width: min(850px, 100%);
  }
}

@media (max-width: 760px) {
  .page-frame {
    width: 100%;
    margin-top: 0;
  }

  .site-header {
    min-height: 84px;
    padding: 0 22px;
  }

  .brand-logo--header {
    width: 225px;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav {
    right: 22px;
  }

  .hero {
    min-height: calc(100svh - 58px);
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.26) 5%, rgba(0, 0, 0, 0.95) 90%),
      linear-gradient(90deg, rgba(3, 3, 3, 0.92) 0%, rgba(3, 3, 3, 0.52) 100%);
  }

  .hero__content {
    width: 100%;
    padding: 42px 24px 86px;
  }

  .hero__eyebrow {
    gap: 13px;
    margin-bottom: 62px;
    font-size: clamp(14px, 4vw, 17px);
    white-space: normal;
  }

  .hero__eyebrow::before {
    height: 34px;
  }

  .hero h1 {
    font-size: clamp(38px, 11.5vw, 55px);
    line-height: 1.22;
    letter-spacing: 0.025em;
  }

  .hero__copy {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero__actions {
    align-items: stretch;
    margin-top: 42px;
    flex-direction: column;
    gap: 17px;
  }

  .primary-button {
    width: 100%;
    min-width: 0;
    padding: 18px 20px;
    font-size: 18px;
  }

  .text-link {
    align-self: flex-start;
    font-size: 18px;
  }

  .values-section {
    margin-top: -28px;
    padding: 86px 24px 58px;
    clip-path: polygon(0 0, 50% 28px, 100% 0, 100% 100%, 0 100%);
  }

  .values-section h2 {
    margin-top: 34px;
    font-size: clamp(32px, 9vw, 42px);
  }

  .values-section__intro {
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.55;
  }

  .values-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .value-card {
    min-height: 112px;
  }

  .value-card[open] {
    min-height: 0;
  }

  .value-card__trigger {
    min-height: 112px;
    padding: 20px 36px 20px 22px;
    column-gap: 22px;
  }

  .value-card__number {
    font-size: 48px;
  }

  .value-card__title {
    font-size: 15px;
  }

  .value-card__content {
    padding: 4px 24px 30px;
    font-size: 16px;
    line-height: 1.55;
  }

  .values-section__cta {
    display: block;
    margin-top: 34px;
    padding: 17px 20px;
    text-align: center;
  }

  .kitchen-worlds {
    padding: 58px 24px 64px;
  }

  .kitchen-worlds__kicker {
    font-size: 16px;
  }

  .kitchen-worlds h2 {
    margin-top: 36px;
    font-size: clamp(30px, 8.5vw, 40px);
    line-height: 1.3;
  }

  .kitchen-worlds h2 br {
    display: none;
  }

  .kitchen-worlds__intro {
    margin-top: 27px;
    font-size: 17px;
    line-height: 1.55;
  }

  .kitchen-worlds__grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 18px;
  }

  .kitchen-card {
    padding: 11px 11px 23px;
  }

  .kitchen-card h3 {
    font-size: 21px;
  }

  .kitchen-card__content > p {
    min-height: 0;
    font-size: 14px;
  }

  .kitchen-card__features span {
    padding: 9px 6px;
    font-size: 9px;
  }

  .kitchen-card__content > a {
    font-size: 16px;
  }

  .project-cta {
    min-height: 0;
    padding: 54px 24px 60px;
  }

  .project-cta__inner {
    display: block;
    min-height: 0;
  }

  .project-cta h2 {
    font-size: clamp(31px, 8.8vw, 41px);
    line-height: 1.28;
  }

  .project-cta p {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.55;
  }

  .project-cta p br,
  .journey-section__intro br {
    display: none;
  }

  .project-cta a {
    display: block;
    margin-top: 32px;
    padding: 17px 20px;
    font-size: 17px;
    text-align: center;
    white-space: normal;
  }

  .journey-section {
    min-height: 0;
    padding: 66px 24px 64px;
  }

  .journey-section__media {
    left: 24%;
  }

  .journey-section__shade {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.5) 0%, #030303 56%),
      linear-gradient(90deg, #030303 0%, rgba(3, 3, 3, 0.55) 100%);
  }

  .journey-section__kicker {
    font-size: 16px;
  }

  .journey-section h2 {
    margin-top: 38px;
    font-size: clamp(32px, 9vw, 43px);
    line-height: 1.28;
  }

  .journey-section__intro {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.55;
  }

  .journey-steps {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 44px;
  }

  .journey-card {
    min-height: 0;
    padding: 27px 24px 30px;
  }

  .journey-card h3 {
    font-size: 25px;
  }

  .journey-card p {
    margin-top: 14px;
    font-size: 17px;
  }

  .showrooms-section {
    padding: 42px 24px 58px;
  }

  .showroom-visuals {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .showroom-visual {
    min-height: 300px;
  }

  .showrooms-section__content {
    padding: 46px 0 0;
  }

  .showrooms-section__kicker {
    font-size: 16px;
  }

  .showrooms-section h2 {
    margin-top: 38px;
    font-size: clamp(29px, 8vw, 38px);
    line-height: 1.3;
  }

  .showrooms-section h2 br {
    display: none;
  }

  .showrooms-section__copy {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.55;
  }

  .showrooms-section__content > a {
    display: block;
    margin-top: 34px;
    padding: 17px 20px;
    text-align: center;
  }

  .testimonials-faq-section {
    padding: 58px 24px 70px;
  }

  .testimonials-faq-section__kicker {
    font-size: 16px;
  }

  .testimonials-faq-section h2 {
    margin-top: 38px;
    font-size: clamp(29px, 8vw, 39px);
    line-height: 1.3;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 18px;
  }

  .testimonial-card__play {
    width: 46px;
    height: 46px;
  }

  .faq-block {
    margin-top: 70px;
  }

  .faq-block__intro > p:not(.testimonials-faq-section__kicker) {
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.55;
    text-align: left;
  }

  .faq-block__intro > a {
    display: block;
    margin-top: 34px;
    padding: 17px 20px;
    text-align: center;
  }

  .faq-accordion {
    padding-top: 48px;
  }

  .faq-item__trigger {
    min-height: 60px;
    padding: 15px 0;
    font-size: 15px;
  }

  .faq-item__content {
    padding: 0 30px 20px 0;
    font-size: 14px;
  }

  .story-section {
    padding: 42px 24px 58px;
  }

  .story-section__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .story-video {
    min-height: 420px;
    font-size: 17px;
  }

  .story-section__kicker {
    font-size: 16px;
  }

  .story-section h2 {
    margin-top: 38px;
    font-size: clamp(29px, 8vw, 39px);
    line-height: 1.3;
  }

  .story-section__copy {
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.55;
  }

  .story-section__copy p + p {
    margin-top: 24px;
  }

  .final-cta {
    padding: 58px 24px 64px;
  }

  .final-cta__inner {
    gap: 42px;
  }

  .final-cta h2 {
    font-size: clamp(31px, 8.7vw, 42px);
  }

  .final-cta__content p {
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.55;
  }

  .final-cta__content a {
    display: block;
    margin-top: 34px;
    padding: 17px 20px;
    text-align: center;
  }

  .final-cta__form {
    min-height: 220px;
  }

  .final-cta__form iframe {
    min-height: 520px;
  }

  .site-footer {
    padding: 52px 24px 30px;
  }

  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 44px;
    gap: 42px 24px;
  }

  .site-footer__intro {
    grid-column: 1 / -1;
  }

  .site-footer__intro p {
    margin-top: 23px;
    font-size: 23px;
  }

  .site-footer__column {
    font-size: 14px;
  }

  .site-footer__column:last-child {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    align-items: flex-start;
    padding-top: 24px;
    flex-direction: column;
  }

  .site-footer__legal {
    gap: 12px 22px;
  }
}

@media (max-width: 390px) {
  .brand-logo--header {
    width: 195px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
