:root {
  --ink: #1e1e1e;
  --muted: #6d6a63;
  --paper: #ffffff;
  --wash: #f6f2ec;
  --line: #ded7cc;
  --brand: #b61923;
  --brand-dark: #182b58;
  --brown: #2f241d;
  --gold: #b58b55;
  --shadow: 0 16px 44px rgba(43, 33, 24, 0.16);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.top-strip {
  background: var(--brand-dark);
  color: #f3eee6;
  font-size: 14px;
}

.top-strip__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.top-strip__spacer {
  flex: 1;
}

.top-strip a:hover {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(222, 215, 204, 0.9);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(30, 30, 30, 0.08);
}

.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand__mark {
  width: 54px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--brand-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
}

.brand__text {
  display: grid;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand__text strong {
  font-size: 18px;
  font-weight: 800;
}

.brand__text small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 23px;
  color: #292521;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a,
.nav-item > button {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  white-space: nowrap;
  cursor: pointer;
}

.main-nav a::after,
.nav-item > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.nav-item:hover > button::after,
.nav-item.is-open > button::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
}

.nav-item--products {
  position: static;
}

.sub-menu,
.mega-menu {
  position: absolute;
  top: 100%;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-item:hover .sub-menu,
.nav-item:hover .mega-menu,
.nav-item.is-open .sub-menu,
.nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu {
  min-width: 230px;
  display: grid;
  gap: 0;
  padding: 12px 0;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 34px rgba(27, 25, 22, 0.16);
}

.sub-menu a {
  padding: 12px 18px;
  color: #2c2925;
  font-size: 12px;
  text-transform: none;
}

.sub-menu a:hover {
  color: var(--brand);
  background: #f7f4ef;
}

.sub-menu a::after,
.mega-menu a::after {
  display: none;
}

.sub-menu--about {
  min-width: 260px;
  right: 0;
}

.sub-menu--media {
  min-width: 190px;
}

.mega-menu {
  left: 50%;
  width: min(1120px, calc(100vw - 64px));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 48px rgba(27, 25, 22, 0.18);
  transform: translate(-50%, 10px);
}

.nav-item:hover .mega-menu,
.nav-item.is-open .mega-menu {
  transform: translate(-50%, 0);
}

.mega-card {
  display: grid;
  gap: 8px;
  color: #23211f;
  text-transform: none;
}

.mega-card img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.mega-card span {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.18;
}

.mega-card small {
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.mega-link {
  grid-column: 1 / -1;
  justify-self: center;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 26px;
  border: 1px solid var(--brand-dark);
  color: var(--brand-dark);
  font-size: 12px;
}

.main-nav__login {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  background: var(--brand);
  color: #ffffff;
}

.main-nav .main-nav__login::after {
  display: none;
}

.main-nav__search {
  width: 56px;
  min-height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: transparent;
  font-size: 0;
}

.main-nav__search::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid var(--brand);
  border-radius: 50%;
}

.main-nav__search::after {
  content: "";
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  width: 8px;
  height: 2px;
  margin-left: -3px;
  background: var(--brand);
  transform: rotate(45deg) translateY(9px);
  transform-origin: center;
}

.main-nav__search:hover::after {
  transform: rotate(45deg) translateY(9px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  background: #16120e;
}

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

.hero-slide {
  opacity: 0;
  visibility: hidden;
  background-image: linear-gradient(180deg, rgba(24, 18, 14, 0.06), rgba(24, 18, 14, 0.1)), var(--hero-image);
  background-size: cover;
  background-position: center;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

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

.hero-slide__content {
  position: absolute;
  right: max(8vw, 84px);
  bottom: 40px;
  z-index: 6;
  width: min(40vw, 560px);
  min-height: 244px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #ffffff;
  padding: 28px 32px;
  background: rgba(35, 35, 35, 0.72);
}

.hero-slide__content p,
.section-heading p,
.solutions p,
.contact p,
.product-modal p {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  width: min(620px, 100%);
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-slide__content span {
  width: min(480px, 100%);
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--light {
  background: #ffffff;
  color: var(--brand-dark);
}

.btn--dark {
  background: var(--brown);
  color: #ffffff;
}

.btn--red {
  background: var(--brand);
  color: #ffffff;
}

.btn--blue {
  background: var(--brand-dark);
  color: #ffffff;
}

.btn--outline {
  border-color: var(--brand-dark);
  color: var(--brand-dark);
}

.btn--outline:hover {
  background: var(--brand-dark);
  color: #ffffff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(0, 0, 0, 0.18);
  transform: translateY(-50%) rotate(45deg);
  cursor: pointer;
}

.hero-arrow::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-color: #ffffff;
  border-style: solid;
}

.hero-arrow--prev {
  left: 26px;
}

.hero-arrow--prev::before {
  left: 17px;
  top: 15px;
  border-width: 0 0 2px 2px;
}

.hero-arrow--next {
  right: 26px;
}

.hero-arrow--next::before {
  right: 17px;
  top: 15px;
  border-width: 2px 2px 0 0;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 32px;
  height: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #ffffff;
}

.audience-cards {
  position: relative;
  z-index: 5;
  width: min(1310px, calc(100% - 28px));
  margin: -284px auto 0;
}

.audience-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.55fr;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.audience-cards article {
  min-height: 244px;
  padding: 34px 32px;
  background: rgba(43, 43, 43, 0.74);
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.audience-cards article:nth-child(2) {
  background: rgba(43, 43, 43, 0.74);
}

.audience-cards h2 {
  margin: 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0;
}

.audience-cards p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
}

.section {
  padding: 88px 0;
}

.section-kicker {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.company__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: 58px;
  align-items: center;
  padding-top: 12px;
}

.company h2,
.values h2,
.solutions h2,
.contact h2,
.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.company__copy p {
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 16px;
}

.company-map {
  display: grid;
  gap: 18px;
}

.company-map__canvas {
  position: relative;
  min-height: 310px;
  background:
    radial-gradient(circle at 20% 35%, rgba(182, 25, 35, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 52% 48%, rgba(182, 25, 35, 0.14) 0 2px, transparent 3px),
    linear-gradient(135deg, transparent 16%, rgba(24, 43, 88, 0.08) 16% 17%, transparent 17% 30%, rgba(24, 43, 88, 0.08) 30% 31%, transparent 31%),
    #eef2f5;
  clip-path: polygon(3% 20%, 16% 13%, 28% 20%, 43% 15%, 58% 23%, 75% 18%, 93% 28%, 88% 58%, 76% 66%, 62% 60%, 51% 74%, 36% 65%, 25% 73%, 12% 60%);
  border: 1px solid #d8e1e8;
}

.company-map__canvas::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 12%;
  height: 60px;
  border-bottom: 8px solid rgba(24, 43, 88, 0.25);
  border-left: 6px solid rgba(24, 43, 88, 0.18);
  transform: skewX(-18deg);
}

.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(182, 25, 35, 0.14);
}

.map-dot--west {
  left: 19%;
  top: 46%;
}

.map-dot--central {
  left: 45%;
  top: 45%;
}

.map-dot--east {
  right: 22%;
  top: 39%;
}

.map-dot--south {
  right: 31%;
  bottom: 30%;
}

.map-dot--hk {
  right: 11%;
  bottom: 18%;
  background: var(--brand-dark);
}

.company-map__legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.company-map__legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.company-map__legend i {
  width: 10px;
  height: 10px;
  display: inline-block;
  background: var(--brand);
}

.company-map__legend span:nth-child(2) i {
  background: var(--brand-dark);
}

.company__panel {
  background: var(--brown);
  color: #ffffff;
  padding: 24px;
}

.tab-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.tab-buttons button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  cursor: pointer;
}

.tab-buttons button.is-active {
  color: var(--brand-dark);
  background: #ffffff;
}

.location-list {
  display: none;
}

.location-list.is-active {
  display: grid;
  gap: 14px;
}

.location-list article {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.location-list b,
.location-list span {
  display: block;
}

.location-list span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.products {
  background: var(--wash);
}

.section-heading {
  text-align: center;
  margin-bottom: 42px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 4px 28px;
  background: #202020;
}

.product-card {
  display: grid;
  gap: 0;
  background: #202020;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
}

.product-card--wide {
  grid-column: span 2;
}

.product-card h3 {
  min-height: 34px;
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.22;
  letter-spacing: 0;
}

.product-card div {
  padding: 14px 12px 18px;
}

.product-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.values {
  position: relative;
  overflow: hidden;
  background: #1d1c1c;
  color: #ffffff;
}

.values::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.42)), url("../images/gallery-kitchen.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2);
}

.values .container {
  position: relative;
}

.values__layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 54px;
}

.value-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.value-columns article {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 22px;
}

.value-columns span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.value-columns h3 {
  margin: 2px 0 16px;
  font-size: 24px;
}

.value-columns ul {
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  list-style: none;
}

.value-columns li + li {
  margin-top: 10px;
}

.solutions {
  background: #ffffff;
  color: var(--ink);
}

.solutions__intro {
  width: min(900px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.solutions__intro span {
  display: block;
  width: min(760px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
}

.solutions__layout {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 42px;
  align-items: center;
}

.video-card {
  position: relative;
  display: block;
}

.video-card img {
  width: 100%;
  aspect-ratio: 1.78;
  object-fit: cover;
}

.video-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand);
  transform: translate(-50%, -50%);
}

.video-card span::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  border-left: 17px solid #ffffff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.stats-card h3 {
  margin: 0 0 28px;
  font-size: 24px;
  line-height: 1.2;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 52px;
}

.stats-grid b {
  display: block;
  color: #2d2a27;
  font-size: 33px;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 6px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
}

.steps {
  background: #202020;
  color: #ffffff;
}

.steps .section-heading h2 {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 400;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps-grid article {
  display: grid;
  align-content: start;
  background: #ffffff;
  color: var(--ink);
  min-height: 520px;
  border: 6px solid #e7e8ee;
}

.steps-grid img {
  width: 100%;
  aspect-ratio: 1.62;
  object-fit: cover;
}

.steps-grid p {
  margin: 28px 24px 5px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.steps-grid h3 {
  margin: 0 24px 14px;
  font-size: 17px;
}

.steps-grid span {
  min-height: 88px;
  margin: 0 24px 24px;
  color: var(--muted);
  font-size: 13px;
}

.steps-grid .btn {
  justify-self: start;
  margin: 0 24px 24px;
}

.quick-cta {
  padding-top: 190px;
  padding-bottom: 62px;
  background: #ffffff;
}

.quick-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
}

.quick-cta article {
  min-height: 148px;
  padding: 28px 32px;
  background: #2b2b2b;
  color: #ffffff;
}

.quick-cta h2 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 400;
}

.quick-cta p {
  width: min(400px, 100%);
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.quick-cta b {
  margin-left: 22px;
  color: #ffffff;
  font-size: 13px;
}

.insights {
  padding-top: 8px;
  background: #ffffff;
}

.insights__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 94px;
  align-items: start;
}

.survey-panel > p,
.news-panel p {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.survey-panel h2,
.news-panel h2 {
  margin: 0 0 26px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.survey-box {
  width: 260px;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
}

.survey-box b {
  font-size: 13px;
  line-height: 1.3;
}

.survey-box label {
  display: grid;
  grid-template-columns: 82px 1fr 34px;
  gap: 8px;
  align-items: center;
  color: #4a4640;
  font-size: 11px;
}

.survey-box i {
  height: 12px;
  background: linear-gradient(90deg, #2d5c98 var(--bar), #eef0f5 var(--bar));
}

.survey-box em {
  font-style: normal;
  text-align: right;
}

.survey-box .btn {
  margin-top: 4px;
}

.news-panel__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.news-panel article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.news-panel img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.news-panel h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.08;
}

.news-panel article span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
}

.news-panel article p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.news-panel article a {
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 18px;
}

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

.gallery-grid img:first-child {
  height: 520px;
}

.site-footer {
  background: #17130f;
  color: #ffffff;
}

.footer-cta {
  background: #2a2a2a;
}

.footer-cta__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.footer-cta h2 {
  margin: 0;
  font-size: 24px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
  padding: 54px 0;
}

.brand--footer .brand__mark {
  background: #ffffff;
  color: var(--brand-dark);
}

.brand--footer .brand__text small {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer p {
  width: min(330px, 100%);
  color: rgba(255, 255, 255, 0.62);
}

.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer nav b {
  margin-bottom: 8px;
  color: #ffffff;
  text-transform: uppercase;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.64);
}

.site-footer__bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(23, 19, 15, 0.74);
}

.product-modal.is-open {
  display: grid;
}

.product-modal__card {
  position: relative;
  width: min(840px, 100%);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  background: #ffffff;
  padding: 24px;
}

.product-modal__card > button {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: var(--brand-dark);
  cursor: pointer;
}

.product-modal__card > button::before,
.product-modal__card > button::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 17px;
  width: 18px;
  height: 2px;
  background: #ffffff;
}

.product-modal__card > button::before {
  transform: rotate(45deg);
}

.product-modal__card > button::after {
  transform: rotate(-45deg);
}

.product-modal img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-modal h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.05;
}

.product-modal span {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
}

.subpage-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1d1c1b;
  color: #ffffff;
}

.subpage-hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.subpage-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.18));
}

.subpage-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 76px;
}

.subpage-hero p,
.subpage-body small {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.subpage-hero h1 {
  width: min(760px, 100%);
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1;
}

.subpage-hero span {
  display: block;
  width: min(620px, 100%);
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.subpage-body {
  background: var(--wash);
}

.subpage-body__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.subpage-body article {
  min-height: 250px;
  display: grid;
  align-content: start;
  padding: 28px 24px;
  background: #ffffff;
}

.subpage-body h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.15;
}

.subpage-body p {
  margin: 0 0 24px;
  color: var(--muted);
}

.subpage-body a {
  align-self: end;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.subpage-cta {
  background: #2a2a2a;
  color: #ffffff;
}

.subpage-cta__inner {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.subpage-cta h2 {
  margin: 0;
  font-size: 26px;
}

.route-category,
.route-blog,
.route-gallery,
.route-order,
.route-faq,
.route-content {
  background: #ffffff;
}

.route-shell {
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.route-sidebar,
.route-news-sidebar {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  background: #f8f5ef;
}

.route-sidebar h2,
.route-news-sidebar h2 {
  margin: 0;
  padding: 18px 18px;
  background: #262626;
  color: #ffffff;
  font-size: 18px;
}

.route-sidebar button,
.route-sidebar a,
.route-news-sidebar a {
  min-height: 48px;
  padding: 14px 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #2b2926;
  text-align: left;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.route-toolbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.route-toolbar p {
  margin: 0;
  color: var(--muted);
}

.route-toolbar label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.route-toolbar select {
  min-height: 36px;
  border: 1px solid var(--line);
  padding: 0 26px 0 10px;
  background: #ffffff;
}

.route-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.route-product-card {
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  background: #ffffff;
}

.route-product-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.route-product-card h2 {
  margin: 18px 18px 6px;
  font-size: 21px;
  line-height: 1.1;
}

.route-product-card span {
  margin: 0 18px 18px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.route-product-card b {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto 18px 18px;
  background: var(--brand-dark);
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
}

.route-blog__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 44px;
}

.route-post {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.route-post img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.route-post h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.08;
}

.route-post span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.route-post p {
  margin: 14px 0 18px;
  color: var(--muted);
}

.route-post a {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.route-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route-gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
}

.route-gallery-card img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.route-gallery-card:hover img {
  transform: scale(1.04);
}

.route-gallery-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--brand);
  transform: translate(-50%, -50%);
}

.route-gallery-card span::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 17px;
  border-left: 16px solid #ffffff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.route-order__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.route-order article {
  min-height: 270px;
  padding: 28px 24px;
  border: 6px solid #e7e8ee;
  background: #ffffff;
}

.route-order small {
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.route-order h2 {
  margin: 12px 0 16px;
  font-size: 23px;
}

.route-order p {
  color: var(--muted);
}

.route-faq__list {
  display: grid;
  gap: 14px;
}

.route-faq details {
  border: 1px solid var(--line);
  background: #ffffff;
}

.route-faq summary {
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.route-faq p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.route-content__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.route-content img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
}

.route-content h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
}

.route-content p {
  color: var(--muted);
  font-size: 17px;
}

.route-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.route-feature-list span {
  padding: 15px 16px;
  background: var(--wash);
  color: #2e2b27;
  font-weight: 800;
}

.route-pdp {
  background: #ffffff;
}

.route-pdp__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 54px;
  align-items: start;
}

.route-pdp__media > img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  border: 1px solid var(--line);
}

.route-pdp__media > div {
  display: grid;
  grid-template-columns: repeat(3, 96px);
  gap: 10px;
  margin-top: 12px;
}

.route-pdp__media > div img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.route-pdp__summary {
  display: grid;
  align-content: start;
}

.route-pdp__summary > p,
.route-article__meta {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.route-pdp__summary h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1;
}

.route-sku {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.route-pdp__summary strong {
  display: block;
  margin-bottom: 24px;
  color: #1f1c19;
  font-size: 22px;
}

.route-pdp dl {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.route-pdp dl div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.route-pdp dl div:last-child {
  border-bottom: 0;
}

.route-pdp dt {
  color: #24211e;
  font-weight: 900;
}

.route-pdp dd {
  margin: 0;
  color: var(--muted);
}

.route-qty {
  display: flex;
  align-items: end;
  gap: 16px;
  margin-top: 28px;
}

.route-qty label {
  display: grid;
  gap: 8px;
  color: #2b2926;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.route-qty input {
  width: 84px;
  height: 46px;
  border: 1px solid var(--line);
  padding: 0 12px;
}

.route-tabs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.route-tabs article {
  padding: 28px;
  background: var(--wash);
}

.route-tabs h3,
.route-related h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.route-tabs p {
  color: var(--muted);
}

.route-tabs table {
  width: 100%;
  border-collapse: collapse;
}

.route-tabs th,
.route-tabs td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.route-tabs th {
  width: 34%;
  color: #24211e;
}

.route-related {
  margin-top: 54px;
}

.route-article {
  background: #ffffff;
}

.route-article > img {
  width: 100%;
  aspect-ratio: 1.95;
  object-fit: cover;
  margin-bottom: 26px;
}

.route-article h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.02;
}

.route-article p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 14px;
    font-size: 12px;
  }

  .company__layout,
  .values__layout {
    grid-template-columns: 1fr;
  }

  .company-map__canvas {
    min-height: 300px;
  }

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

  .product-card--wide {
    grid-column: span 1;
  }

  .value-columns {
    grid-template-columns: 1fr;
  }

  .mega-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .route-shell,
  .route-blog__grid,
  .route-content__layout,
  .route-pdp__layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .top-strip__inner {
    min-height: 56px;
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .brand {
    min-width: auto;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__text strong {
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 120px;
    bottom: 0;
    display: none;
    align-content: start;
    justify-items: stretch;
    justify-content: stretch;
    padding: 24px 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
    overflow-y: auto;
  }

  .main-nav.is-open {
    display: grid;
    gap: 0;
  }

  .main-nav a,
  .nav-item > button {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .main-nav a::after,
  .nav-item > button::after {
    display: none;
  }

  .nav-item {
    min-height: auto;
    display: grid;
  }

  .nav-item > button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .nav-item > button::before {
    content: "+";
    order: 2;
    color: var(--brand);
    font-size: 18px;
  }

  .nav-item.is-open > button::before {
    content: "-";
  }

  .sub-menu,
  .mega-menu {
    position: static;
    width: 100%;
    min-width: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: #f8f5ef;
  }

  .nav-item:hover .sub-menu,
  .nav-item:hover .mega-menu {
    transform: none;
  }

  .nav-item.is-open .sub-menu,
  .nav-item.is-open .mega-menu {
    display: grid;
  }

  .sub-menu {
    padding: 4px 0 10px 18px;
  }

  .sub-menu a {
    padding: 11px 0;
    border-bottom: 0;
    font-size: 13px;
  }

  .mega-menu {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 0 18px 18px;
  }

  .mega-card {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  .mega-card img {
    aspect-ratio: 1.25;
  }

  .mega-card small {
    grid-column: 2;
  }

  .mega-link {
    justify-self: stretch;
    justify-content: center;
    margin-right: 18px;
  }

  .main-nav__login,
  .main-nav__search {
    min-height: 58px;
    justify-content: flex-start;
    padding-left: 0;
    background: transparent;
    color: var(--ink);
  }

  .main-nav__search {
    width: 100%;
    min-height: 58px;
    border-left: 0;
    border-right: 0;
    color: var(--ink);
    font-size: 14px;
  }

  .main-nav__search::before,
  .main-nav__search::after {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero-slide {
    background-image: linear-gradient(180deg, rgba(24, 18, 14, 0.02), rgba(24, 18, 14, 0.08)), var(--hero-image);
  }

  .hero-slide__content {
    display: flex;
    left: 16px;
    right: 16px;
    bottom: 0;
    width: auto;
    min-height: 122px;
    padding: 24px 20px;
    background: rgba(43, 43, 43, 0.76);
  }

  .hero h1,
  .hero h2 {
    font-size: 28px;
    line-height: 1.1;
  }

  .hero-slide__content span {
    margin: 12px 0 16px;
    font-size: 14px;
  }

  .hero-arrow {
    display: none;
  }

  .audience-cards {
    width: 100%;
    margin-top: 0;
  }

  .audience-cards__grid,
  .solutions__layout,
  .steps-grid,
  .quick-cta__grid,
  .insights__grid,
  .site-footer__grid,
  .product-modal__card {
    grid-template-columns: 1fr;
  }

  .audience-cards article {
    min-height: auto;
    padding: 28px 22px;
    background: #ffffff;
    color: var(--ink);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience-cards article:nth-child(2),
  .audience-cards article:nth-child(3) {
    background: #ffffff;
  }

  .audience-cards article:nth-child(3) {
    display: none;
  }

  .audience-cards p {
    color: var(--muted);
  }

  .section {
    padding: 62px 0;
  }

  .company h2,
  .values h2,
  .solutions h2,
  .contact h2,
  .section-heading h2 {
    font-size: 34px;
  }

  .company__panel,
  .contact-form {
    padding: 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1px;
    padding-bottom: 0;
  }

  .product-card {
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 0;
  }

  .product-card img {
    height: 112px;
    aspect-ratio: auto;
  }

  .product-card h3 {
    min-height: 0;
    font-size: 19px;
  }

  .values::before {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.56)), url("../images/gallery-kitchen.jpg");
  }

  .solutions__intro {
    margin-bottom: 30px;
    text-align: left;
  }

  .stats-grid {
    gap: 24px;
  }

  .stats-grid b {
    font-size: 28px;
  }

  .steps-grid article {
    min-height: auto;
  }

  .steps-grid span {
    min-height: 0;
  }

  .quick-cta {
    padding-top: 62px;
  }

  .quick-cta__grid {
    gap: 18px;
  }

  .quick-cta article {
    padding: 26px 22px;
  }

  .quick-cta b {
    display: block;
    margin: 14px 0 0;
  }

  .insights__grid {
    gap: 50px;
  }

  .survey-box {
    width: 100%;
  }

  .news-panel__head {
    display: grid;
  }

  .news-panel article {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
  }

  .news-panel h3 {
    font-size: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: auto;
    aspect-ratio: 1.22;
  }

  .site-footer__grid {
    padding: 42px 0;
  }

  .footer-cta__inner {
    min-height: 112px;
    display: grid;
    gap: 14px;
    padding: 20px 0;
    text-align: center;
  }

  .subpage-hero {
    min-height: 470px;
  }

  .subpage-hero__content {
    padding-bottom: 48px;
  }

  .subpage-hero h1 {
    font-size: 42px;
  }

  .subpage-hero span {
    font-size: 16px;
  }

  .subpage-body__grid {
    grid-template-columns: 1fr;
  }

  .subpage-cta__inner {
    min-height: 136px;
    display: grid;
    gap: 16px;
    padding: 24px 0;
    text-align: center;
  }

  .route-toolbar {
    display: grid;
    gap: 12px;
  }

  .route-product-grid,
  .route-gallery__grid,
  .route-order__grid {
    grid-template-columns: 1fr;
  }

  .route-post {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
  }

  .route-post h2 {
    font-size: 20px;
  }

  .route-post p {
    font-size: 13px;
  }

  .route-content__layout {
    gap: 28px;
  }

  .route-feature-list {
    grid-template-columns: 1fr;
  }

  .route-pdp__media > div {
    grid-template-columns: repeat(3, 76px);
  }

  .route-pdp__media > div img {
    width: 76px;
    height: 76px;
  }

  .route-pdp dl div,
  .route-tabs {
    grid-template-columns: 1fr;
  }

  .route-qty {
    align-items: stretch;
    display: grid;
  }
}
