@charset "UTF-8";
:root {
  --chocolate:#0A0A0A;
  --praline:#8B4A1C;
  --caramel:#C4854A;
  --milk:#8B4A1C;
  --biscuit:#FBFAF8;
  --stone:#FFFFFF;
  --ink:#0A0A0A;
  --white:#FFFFFF;
}

body.cw-site {
  box-sizing: border-box;
}
body.cw-site *, body.cw-site *::before, body.cw-site *::after {
  box-sizing: border-box;
}

body.cw-site {
  font-family: "Geist", system-ui, sans-serif;
  background: var(--stone);
  color: var(--ink);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-x: clip;
}

body.cw-site img {
  display: block;
  max-width: 100%;
}

body.cw-site a {
  color: inherit;
  text-decoration: none;
}

body.cw-site h1, body.cw-site h2, body.cw-site h3, body.cw-site h4, body.cw-site h5, body.cw-site h6, body.cw-site p, body.cw-site ul, body.cw-site ol {
  margin: 0;
  padding: 0;
}

body.cw-site ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body.cw-site > header.o_header_standard,
body.cw-site > .o_main_navbar,
body.cw-site > #wrap > header,
body.cw-site > footer.o_footer {
  display: none !important;
}

#cw-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  transition: box-shadow 0.4s;
  background: var(--chocolate);
}
#cw-nav.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}
#cw-nav .nav-logo img {
  height: 30px;
  filter: invert(1) brightness(10);
  mix-blend-mode: difference;
}
#cw-nav .nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  height: 68px;
}
#cw-nav .nav-links > a, #cw-nav .nav-item > .top {
  font-size: 13px;
  color: var(--biscuit);
  text-decoration: none;
  opacity: 0.78;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 68px;
}
#cw-nav .nav-links > a:hover, #cw-nav .nav-links > a.active, #cw-nav .nav-item > .top:hover, #cw-nav .nav-item > .top.active {
  opacity: 1;
}
#cw-nav .nav-links > a.active, #cw-nav .nav-item > .top.active {
  color: var(--caramel);
}
#cw-nav .nav-links > a .caret, #cw-nav .nav-item > .top .caret {
  font-size: 9px;
  opacity: 0.6;
}
#cw-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 68px;
}
#cw-nav .nav-utils {
  display: flex;
  gap: 18px;
  align-items: center;
}
#cw-nav .nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
#cw-nav .nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s, opacity 0.2s;
}
#cw-nav .nav-mobile-foot {
  display: none;
}
#cw-nav .nav-icon {
  display: flex;
  opacity: 0.8;
  transition: opacity 0.2s;
}
#cw-nav .nav-icon:hover {
  opacity: 1;
}
#cw-nav .nav-item.lang > .top {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#cw-nav .nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  transition: border-color 0.2s;
}
#cw-nav .nav-search:focus-within {
  border-color: var(--caramel);
}
#cw-nav .nav-search svg {
  flex: none;
  opacity: 0.7;
}
#cw-nav .nav-search input {
  border: none;
  background: none;
  outline: none;
  color: var(--biscuit);
  font-size: 12.5px;
  width: 148px;
  font-family: inherit;
}
#cw-nav .nav-search input::placeholder {
  color: rgba(251, 250, 248, 0.5);
}
#cw-nav .nav-item.account > .top {
  padding: 0;
  opacity: 0.8;
}
#cw-nav .nav-item.account > .top:hover {
  opacity: 1;
}
#cw-nav .acct-auth {
  display: none;
}
#cw-nav .acct-name {
  display: none;
}
#cw-nav.is-auth .acct-guest, #cw-nav.is-auth .acct-head-guest {
  display: none;
}
#cw-nav.is-auth .acct-auth {
  display: block;
}
#cw-nav.is-auth .acct-name {
  display: block;
}
#cw-nav .nav-search-m {
  display: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--caramel);
  color: var(--white);
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--praline);
  color: var(--white);
}

@media (min-width: 1200px) {
  body:not(.cw-site) #cw-nav {
    padding-left: max(56px, calc((100% - 1140px) / 2));
    padding-right: max(56px, calc((100% - 1140px) / 2));
  }
}
@media (min-width: 1400px) {
  body:not(.cw-site) #cw-nav {
    padding-left: max(56px, calc((100% - 1320px) / 2));
    padding-right: max(56px, calc((100% - 1320px) / 2));
  }
}
.btn-cw-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--caramel);
  color: var(--white);
  padding: 13px 26px;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-cw-primary:hover {
  background: var(--praline);
  color: var(--white);
}
.btn-cw-primary.dark {
  background: var(--chocolate);
}
.btn-cw-primary.dark:hover {
  background: var(--ink);
}
.btn-cw-primary.light {
  background: var(--white);
  color: var(--chocolate);
}
.btn-cw-primary.light:hover {
  background: var(--biscuit);
  color: var(--chocolate);
}

.btn-cw-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--chocolate);
  border: 1.5px solid rgba(10, 10, 10, 0.25);
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-cw-ghost:hover {
  border-color: var(--chocolate);
  background: var(--chocolate);
  color: var(--biscuit);
}
.btn-cw-ghost.light {
  color: var(--biscuit);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-cw-ghost.light:hover {
  border-color: var(--biscuit);
  background: transparent;
  color: var(--white);
}

.cw-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.cw-hero .hero-video, .cw-hero .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cw-hero .hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.3) 55%, rgba(10, 10, 10, 0.1) 100%);
}
.cw-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 72px 80px;
  max-width: 760px;
}
.cw-hero .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.cw-hero .hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--biscuit);
  opacity: 0.8;
}
.cw-hero .hero-headline {
  font-family: "Gotu", sans-serif;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -1.5px;
  color: var(--biscuit);
}
.cw-hero .hero-headline em {
  font-style: normal;
  color: var(--caramel);
}
.cw-hero .hero-body {
  margin-top: 28px;
  max-width: 480px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--biscuit);
  opacity: 0.8;
}
.cw-hero .hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.cw-page-hero {
  position: relative;
  padding: 160px 72px 88px;
  background: var(--chocolate);
  color: var(--biscuit);
  overflow: hidden;
}
.cw-page-hero .ph-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.cw-page-hero .ph-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.4) 100%);
}
.cw-page-hero > * {
  position: relative;
  z-index: 2;
}
.cw-page-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 18px;
}
.cw-page-hero h1 {
  font-family: "Gotu", sans-serif;
  font-size: clamp(44px, 5.4vw, 80px);
  line-height: 0.96;
  letter-spacing: -1.3px;
  color: var(--biscuit);
  max-width: 880px;
}
.cw-page-hero h1 em {
  font-style: normal;
  color: var(--caramel);
}
.cw-page-hero .ph-sub {
  margin-top: 24px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--biscuit);
  opacity: 0.78;
}
.cw-page-hero .ph-meta {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--biscuit);
  opacity: 0.6;
}

.breadcrumb-cw {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--biscuit);
  opacity: 0.55;
  margin-bottom: 24px;
}
.breadcrumb-cw a {
  text-decoration: none;
  transition: opacity 0.2s;
}
.breadcrumb-cw a:hover {
  opacity: 1;
  color: var(--caramel);
}
.breadcrumb-cw span.sep {
  opacity: 0.4;
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 12px;
}

.section-title {
  font-family: "Gotu", sans-serif;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.5px;
  color: var(--chocolate);
}
.section-title.light {
  color: var(--biscuit);
}

.section-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--chocolate);
  opacity: 0.72;
  max-width: 520px;
  margin-top: 16px;
}
.section-body.light {
  color: var(--biscuit);
  opacity: 0.78;
}

.marquee-strip {
  background: var(--caramel);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
}
.marquee-strip .marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-strip .marquee-track span {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 28px;
  opacity: 0.9;
}
.marquee-strip .marquee-track span.dot {
  opacity: 0.4;
  padding: 0 4px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.stats-strip {
  background: var(--chocolate);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-strip .stat-cell {
  padding: 52px 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.stats-strip .stat-cell:last-child {
  border-right: none;
}
.stats-strip .stat-num {
  font-family: "Gotu", sans-serif;
  font-size: clamp(48px, 4.5vw, 72px);
  color: var(--caramel);
  line-height: 1;
  letter-spacing: -1px;
}
.stats-strip .stat-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--biscuit);
  opacity: 0.55;
  margin-top: 10px;
}

.moulds-section {
  padding: 88px 72px;
  background: var(--stone);
  position: relative;
}

.moulds-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.moulds-grid-home {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 14px;
}

.mould-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.mould-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mould-card:hover img {
  transform: scale(1.06);
}
.mould-card .mould-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(10, 10, 10, 0.88) 100%);
}
.mould-card .mould-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 16px;
}
.mould-card .mould-card-code {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 4px;
}
.mould-card .mould-card-name {
  font-family: "Gotu", sans-serif;
  font-size: 20px;
  color: var(--biscuit);
  line-height: 1.1;
}
.mould-card.span-2x2 {
  grid-column: 1/2;
  grid-row: 1/3;
}

.design-card {
  background: var(--biscuit);
  border: 1px solid rgba(10, 10, 10, 0.1);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.design-card .diamonds {
  display: flex;
  gap: 8px;
  align-items: center;
}

.moulds-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 32px 72px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  position: sticky;
  top: 68px;
  z-index: 50;
  backdrop-filter: blur(10px);
}

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 7px 18px;
  border: 1px solid rgba(10, 10, 10, 0.2);
  background: transparent;
  cursor: pointer;
  font-family: "Geist", sans-serif;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--ink);
  transition: all 0.2s;
}
.filter-pill:hover {
  border-color: var(--chocolate);
}
.filter-pill.active {
  background: var(--chocolate);
  color: var(--biscuit);
  border-color: var(--chocolate);
}

.moulds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 48px 72px 96px;
}
.moulds-grid .mould-card {
  background: var(--biscuit);
  aspect-ratio: 1/1.05;
}
.moulds-grid .mould-card .card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.92));
}
.moulds-grid .card-code {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--caramel);
  text-transform: uppercase;
}
.moulds-grid .card-name {
  font-family: "Gotu", sans-serif;
  font-size: 18px;
  color: var(--biscuit);
  line-height: 1.15;
  margin-top: 4px;
}
.moulds-grid .card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 10, 10, 0.78);
  color: var(--biscuit);
  padding: 4px 10px;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.moulds-grid .design-cta {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--chocolate);
  color: var(--biscuit);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.moulds-grid .design-cta h3 {
  font-family: "Gotu", sans-serif;
  font-size: 32px;
  line-height: 1.1;
  margin-top: 20px;
}
.moulds-grid .design-cta p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.78;
  margin-top: 14px;
  max-width: 340px;
}

.categories-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(10, 10, 10, 0.1);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.categories-band .cat-cell {
  background: var(--biscuit);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s;
}
.categories-band .cat-cell:hover {
  background: var(--chocolate);
  color: var(--biscuit);
}
.categories-band .cat-cell .cat-num {
  font-family: "Gotu", sans-serif;
  font-size: 36px;
  color: var(--caramel);
}
.categories-band .cat-cell .cat-label {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 6px;
}

.machinery-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.machinery-section .machinery-media {
  position: relative;
  overflow: hidden;
}
.machinery-section .machinery-media video, .machinery-section .machinery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.machinery-section .machinery-copy {
  background: var(--chocolate);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.machinery-section .machine-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.machinery-section .machine-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: padding 0.2s;
}
.machinery-section .machine-item:hover {
  padding-left: 8px;
}
.machinery-section .machine-name {
  font-family: "Gotu", sans-serif;
  font-size: 20px;
  color: var(--biscuit);
}
.machinery-section .machine-spec {
  font-size: 11px;
  color: var(--biscuit);
  opacity: 0.45;
  letter-spacing: 0.5px;
}
.machinery-section .machine-arrow {
  color: var(--caramel);
  opacity: 0;
  transition: opacity 0.2s;
}
.machinery-section .machine-item:hover .machine-arrow {
  opacity: 1;
}

.range-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--chocolate);
  color: var(--biscuit);
}
.range-strip .cell {
  padding: 44px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.range-strip .cell:last-child {
  border-right: none;
}
.range-strip .num {
  font-family: "Gotu", sans-serif;
  font-size: 40px;
  color: var(--caramel);
  line-height: 1;
}
.range-strip .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 10px;
}
.range-strip .desc {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.5;
  margin-top: 12px;
}

.machine-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.machine-detail.flip {
  direction: rtl;
}
.machine-detail.flip > * {
  direction: ltr;
}
.machine-detail .media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.machine-detail .media img, .machine-detail .media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.machine-detail .copy {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.machine-detail .machine-id {
  font-family: "Gotu", sans-serif;
  font-size: 14px;
  color: var(--caramel);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.machine-detail h2 {
  font-family: "Gotu", sans-serif;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1;
  color: var(--chocolate);
  letter-spacing: -0.6px;
}
.machine-detail .lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--chocolate);
  opacity: 0.78;
  max-width: 480px;
}
.machine-detail .specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 36px;
  padding: 24px 0;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
}
.machine-detail .specs .label {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 4px;
}
.machine-detail .specs .value {
  font-family: "Gotu", sans-serif;
  font-size: 22px;
  color: var(--chocolate);
}
.machine-detail .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.compare-table th, .compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.compare-table th {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 500;
}
.compare-table .name {
  font-family: "Gotu", sans-serif;
  font-size: 18px;
  color: var(--biscuit);
}
.compare-table tr:hover {
  background: rgba(196, 133, 74, 0.06);
}

.compare-table.on-light th, .compare-table.on-light td {
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  color: var(--ink);
}
.compare-table.on-light th {
  color: var(--caramel);
}
.compare-table.on-light .name {
  color: var(--ink);
}

.chefs-section {
  padding: 88px 72px;
  background: var(--biscuit);
}

.chefs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.chefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(10, 10, 10, 0.08);
}

.chef-card {
  position: relative;
  overflow: hidden;
  height: 520px;
  cursor: pointer;
  background: var(--biscuit);
}
.chef-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.chef-card:hover img {
  transform: scale(1.04);
}
.chef-card .chef-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(10, 10, 10, 0.9) 100%);
}
.chef-card .chef-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
}
.chef-card .chef-name {
  font-family: "Gotu", sans-serif;
  font-size: 26px;
  color: var(--biscuit);
}
.chef-card .chef-role {
  font-size: 12px;
  color: var(--caramel);
  margin-top: 5px;
  letter-spacing: 0.5px;
}
.chef-card .chef-quote {
  font-size: 13px;
  color: var(--biscuit);
  opacity: 0;
  line-height: 1.5;
  margin-top: 10px;
  font-style: italic;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}
.chef-card:hover .chef-quote {
  opacity: 0.78;
  transform: translateY(0);
}

.chef-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--biscuit);
}
.chef-feature .media {
  position: relative;
  overflow: hidden;
}
.chef-feature .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chef-feature .copy {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}
.chef-feature .role {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--caramel);
}
.chef-feature h2 {
  font-family: "Gotu", sans-serif;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  color: var(--chocolate);
  letter-spacing: -0.6px;
}
.chef-feature .pull-quote {
  font-family: "Gotu", sans-serif;
  font-size: 22px;
  line-height: 1.4;
  color: var(--praline);
  border-left: 2px solid var(--caramel);
  padding-left: 18px;
}
.chef-feature .bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--chocolate);
  opacity: 0.78;
  max-width: 480px;
}
.chef-feature .meta {
  display: flex;
  gap: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 10, 10, 0.15);
}
.chef-feature .meta div {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--praline);
}
.chef-feature .meta div b {
  display: block;
  font-family: "Gotu", sans-serif;
  font-size: 18px;
  color: var(--chocolate);
  letter-spacing: -0.4px;
  text-transform: none;
  margin-top: 4px;
  font-weight: 400;
}

.bcs-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.bcs-section .bcs-media {
  position: relative;
  overflow: hidden;
}
.bcs-section .bcs-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bcs-section .bcs-copy {
  background: var(--milk);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  color: var(--biscuit);
}
.bcs-section .bcs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.bcs-section .bcs-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}
.bcs-section .bcs-list-item::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border: 1px solid var(--caramel);
  transform: rotate(45deg);
  margin-top: 5px;
}

.courses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 96px 72px;
}
.courses .course-card {
  background: var(--biscuit);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(10, 10, 10, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.courses .course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 10, 10, 0.12);
}
.courses .course-card .img {
  aspect-ratio: 1.4/1;
  overflow: hidden;
}
.courses .course-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.courses .course-card .body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.courses .course-card .level {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
}
.courses .course-card h3 {
  font-family: "Gotu", sans-serif;
  font-size: 24px;
  line-height: 1.15;
  color: var(--chocolate);
}
.courses .course-card .desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--chocolate);
  opacity: 0.74;
}
.courses .course-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  margin-top: auto;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
  font-size: 12px;
  color: var(--praline);
}
.courses .course-card .meta b {
  font-family: "Gotu", sans-serif;
  font-size: 18px;
  color: var(--chocolate);
  font-weight: 400;
}

.showroom-section {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.showroom-section .showroom-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.showroom-section .showroom-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
}
.showroom-section .showroom-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
}
.showroom-section .showroom-title {
  font-family: "Gotu", sans-serif;
  font-size: clamp(40px, 4vw, 60px);
  color: var(--biscuit);
  line-height: 1.05;
  letter-spacing: -0.5px;
}
.showroom-section .showroom-sub {
  font-size: 16px;
  color: var(--biscuit);
  opacity: 0.72;
  margin-top: 14px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.showroom-section .showroom-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.showroom-hero-page {
  position: relative;
  height: 80vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.showroom-hero-page img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showroom-hero-page .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.28) 100%);
}
.showroom-hero-page .content {
  position: relative;
  z-index: 2;
  padding: 0 72px 72px;
  max-width: 880px;
}
.showroom-hero-page h1 {
  font-family: "Gotu", sans-serif;
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -1.4px;
  color: var(--biscuit);
}
.showroom-hero-page h1 em {
  font-style: normal;
  color: var(--caramel);
}

.gallery-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(10, 10, 10, 0.08);
}
.gallery-tiles .tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.gallery-tiles .tile.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gallery-tiles .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.gallery-tiles .tile:hover img {
  transform: scale(1.05);
}

.visit-info {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 96px 72px;
  background: var(--biscuit);
}
.visit-info h2 {
  font-family: "Gotu", sans-serif;
  font-size: clamp(40px, 4vw, 56px);
  color: var(--chocolate);
  line-height: 1;
  letter-spacing: -0.6px;
}
.visit-info .lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--chocolate);
  opacity: 0.78;
  margin-top: 18px;
  max-width: 520px;
}
.visit-info .visit-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 36px;
}
.visit-info .visit-block .label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 8px;
}
.visit-info .visit-block .value {
  font-family: "Gotu", sans-serif;
  font-size: 20px;
  color: var(--chocolate);
  line-height: 1.3;
}
.visit-info .visit-block .value small {
  display: block;
  font-size: 14px;
  opacity: 0.65;
  margin-top: 4px;
  font-family: "Geist", sans-serif;
}

.booking-box {
  background: var(--chocolate);
  color: var(--biscuit);
  padding: 48px 36px;
  align-self: start;
}
.booking-box h3 {
  font-family: "Gotu", sans-serif;
  font-size: 28px;
}
.booking-box .row {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-box label {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--caramel);
}
.booking-box input, .booking-box select, .booking-box textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--biscuit);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  border-radius: 0;
}
.booking-box input:focus, .booking-box select:focus, .booking-box textarea:focus {
  outline: none;
  border-color: var(--caramel);
}
.booking-box button {
  margin-top: 20px;
}

footer.cw-footer {
  background: var(--ink);
  padding: 64px 72px 36px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
footer.cw-footer .footer-brand img {
  height: 32px;
  filter: invert(1) brightness(10);
  opacity: 0.88;
}
footer.cw-footer .footer-tagline {
  font-size: 13px;
  line-height: 1.65;
  color: var(--biscuit);
  opacity: 0.5;
  margin-top: 18px;
  max-width: 260px;
}
footer.cw-footer .footer-col-head {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 16px;
}
footer.cw-footer .footer-col a {
  display: block;
  font-size: 13px;
  color: var(--biscuit);
  opacity: 0.6;
  text-decoration: none;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}
footer.cw-footer .footer-col a:hover {
  opacity: 1;
}
footer.cw-footer .footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer.cw-footer .footer-bottom span {
  font-size: 11px;
  color: var(--biscuit);
  opacity: 0.4;
  letter-spacing: 0.3px;
}
footer.cw-footer .footer-langs {
  display: flex;
  gap: 14px;
}
footer.cw-footer .footer-langs a {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--biscuit);
  opacity: 0.55;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}
footer.cw-footer .footer-langs a:hover, footer.cw-footer .footer-langs a.active {
  color: var(--caramel);
  opacity: 1;
}
footer.cw-footer .footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
footer.cw-footer .footer-legal a:hover {
  color: var(--caramel);
  opacity: 1;
}

.cw-legal-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.75;
  max-width: 760px;
  margin-top: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.08s;
}

.reveal-d2 {
  transition-delay: 0.16s;
}

.reveal-d3 {
  transition-delay: 0.24s;
}

.cw-section {
  padding: 96px 72px;
}
.cw-section.tight {
  padding: 72px;
}
.cw-section.dark {
  background: var(--chocolate);
  color: var(--biscuit);
}
.cw-section.cream {
  background: var(--biscuit);
}

.cw-narrow {
  max-width: 760px;
  margin: 0 auto;
}

.cw-container {
  max-width: 1280px;
  margin: 0 auto;
}

.center {
  text-align: center;
}
.center .section-body {
  margin-left: auto;
  margin-right: auto;
}
.center .cta-row {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.machine-families {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.machine-families .family-card {
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.14);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.machine-families .family-card:hover {
  border-color: var(--caramel);
  box-shadow: 0 14px 36px rgba(10, 10, 10, 0.08);
}
.machine-families .family-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
}
.machine-families .family-img.ph {
  background: linear-gradient(135deg, #F4ECE1, #E7D8C3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.machine-families .family-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.machine-families .family-name {
  font-family: "Gotu", sans-serif;
  font-size: 23px;
  color: var(--ink);
  line-height: 1.05;
}
.machine-families .family-desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.7);
}
.machine-families .family-link {
  margin-top: auto;
  padding-top: 14px;
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--caramel);
}

.chefs-grid.roster {
  grid-template-columns: repeat(5, 1fr);
}
.chefs-grid.roster .chef-card {
  height: 360px;
}

.pos-flagships {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(10, 10, 10, 0.08);
  margin-top: 40px;
}
.pos-flagships .pos-flagship {
  background: var(--biscuit);
  padding: 32px 28px;
}
.pos-flagships .pos-place {
  font-family: "Gotu", sans-serif;
  font-size: 22px;
  color: var(--chocolate);
}
.pos-flagships .pos-addr {
  font-size: 14px;
  line-height: 1.6;
  color: var(--chocolate);
  opacity: 0.74;
  margin-top: 10px;
}

.pos-distributors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}
.pos-distributors .pos-dist {
  background: var(--chocolate);
  padding: 28px 26px;
}
.pos-distributors .pos-dist-name {
  font-family: "Gotu", sans-serif;
  font-size: 20px;
  color: var(--biscuit);
}
.pos-distributors .pos-dist-country {
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .chefs-grid.roster {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .machine-families, .pos-flagships, .pos-distributors {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .chefs-grid.roster {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .machine-families, .pos-flagships, .pos-distributors {
    grid-template-columns: 1fr;
  }
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(10, 10, 10, 0.08);
  margin-top: 40px;
}
.feature-grid .feat {
  background: var(--biscuit);
  padding: 30px 26px;
}
.feature-grid .feat h3 {
  font-family: "Gotu", sans-serif;
  font-size: 22px;
  color: var(--chocolate);
  line-height: 1.1;
}
.feature-grid .feat p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--chocolate);
  opacity: 0.74;
  margin-top: 10px;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.product-row .product-card {
  background: var(--biscuit);
}
.product-row .product-card .pimg {
  aspect-ratio: 1/1;
  background: rgba(10, 10, 10, 0.06);
}
.product-row .product-card .pbody {
  padding: 16px 18px 20px;
}
.product-row .product-card .ptag {
  font-size: 9px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--caramel);
}
.product-row .product-card .pname {
  font-family: "Gotu", sans-serif;
  font-size: 16px;
  color: var(--chocolate);
  margin-top: 6px;
  line-height: 1.15;
}
.product-row .product-card .pprice {
  font-size: 13px;
  color: var(--praline);
  margin-top: 6px;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .product-row {
    grid-template-columns: 1fr 1fr;
  }
}
.cw-split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.cw-split-2.middle {
  align-items: center;
}

.cw-display {
  font-family: "Gotu", sans-serif;
  font-size: clamp(48px, 5.4vw, 80px);
  line-height: 0.96;
  letter-spacing: -1.4px;
  color: var(--chocolate);
}
.cw-display em {
  font-style: normal;
  color: var(--caramel);
}

.cw-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--chocolate);
  opacity: 0.78;
  max-width: 520px;
}

.cw-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.cw-timeline .item-year {
  font-family: "Gotu", sans-serif;
  color: var(--caramel);
  font-size: 24px;
  margin-bottom: 10px;
}
.cw-timeline .item-body {
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.78;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.news-grid article {
  display: flex;
  flex-direction: column;
}
.news-grid .news-thumb {
  aspect-ratio: 1.5/1;
  overflow: hidden;
}
.news-grid .news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-grid .news-meta {
  padding: 24px 0;
}
.news-grid .news-tag {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--caramel);
}
.news-grid h3 {
  font-family: "Gotu", sans-serif;
  font-size: 22px;
  color: var(--chocolate);
  margin-top: 10px;
  line-height: 1.2;
}
.news-grid p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--chocolate);
  opacity: 0.74;
  margin-top: 10px;
}

.signature-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 36px;
  padding: 0;
}
.signature-perks li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--biscuit);
  opacity: 0.85;
}
.signature-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--caramel);
  transform: rotate(45deg);
}

.contact-page {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 100vh;
  padding-top: 68px;
}
.contact-page .contact-form-wrap {
  background: var(--biscuit);
  padding: 80px 64px;
}
.contact-page .contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-page .contact-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-page .contact-form label {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--praline);
  display: block;
  margin-bottom: 6px;
}
.contact-page .contact-form input, .contact-page .contact-form textarea, .contact-page .contact-form select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(10, 10, 10, 0.2);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--ink);
  font-family: inherit;
  border-radius: 0;
}
.contact-page .contact-form input:focus, .contact-page .contact-form textarea:focus, .contact-page .contact-form select:focus {
  outline: none;
  border-color: var(--caramel);
}
.contact-page .contact-form textarea {
  min-height: 140px;
}
.contact-page .contact-aside {
  background: var(--chocolate);
  color: var(--biscuit);
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.contact-page .contact-aside .label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 10px;
}
.contact-page .contact-aside .value {
  font-family: "Gotu", sans-serif;
  font-size: 22px;
  line-height: 1.3;
}
.contact-page .contact-aside .value a {
  color: var(--biscuit);
  border-bottom: 1px solid rgba(196, 133, 74, 0.35);
}
.contact-page .contact-aside .value small {
  display: block;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  opacity: 0.65;
  margin-top: 4px;
}

@media (max-width: 1100px) {
  .cw-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .cw-split-2 {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  .cw-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .signature-perks {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-page {
    grid-template-columns: 1fr;
  }
  .contact-page .contact-form-wrap {
    padding: 48px 24px;
  }
  .contact-page .contact-aside {
    padding: 48px 24px;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .cw-hero {
    min-height: 560px;
  }
  .cw-hero .hero-content {
    padding: 0 20px 48px;
  }
  .stats-strip {
    grid-template-columns: 1fr;
  }
  .moulds-grid {
    grid-template-columns: 1fr;
  }
  .moulds-grid .design-cta {
    grid-column: span 1;
  }
  .categories-band {
    grid-template-columns: 1fr;
  }
  .range-strip {
    grid-template-columns: 1fr;
  }
  .gallery-tiles {
    grid-template-columns: 1fr;
  }
  .gallery-tiles .tile.wide {
    grid-column: span 1;
    aspect-ratio: 1.6/1;
  }
  footer.cw-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cw-section {
    padding: 56px 20px;
  }
  .cw-page-hero {
    padding: 104px 20px 44px;
  }
  .compare-table {
    font-size: 12px;
  }
  .compare-table th, .compare-table td {
    padding: 12px 10px;
  }
}
@media (max-width: 900px) {
  #cw-nav {
    padding: 0 24px;
  }
  #cw-nav .nav-links {
    display: none;
  }
  .cw-hero .hero-content {
    padding: 0 24px 64px;
  }
  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }
  .moulds-section {
    padding: 56px 24px;
  }
  .moulds-grid-home {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .moulds-grid-home .span-2x2 {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .machinery-section {
    grid-template-columns: 1fr;
  }
  .machinery-section .machinery-copy {
    padding: 48px 24px;
  }
  .chefs-section {
    padding: 56px 24px;
  }
  .chefs-grid {
    grid-template-columns: 1fr;
  }
  .chef-card {
    height: 320px;
  }
  .bcs-section {
    grid-template-columns: 1fr;
  }
  .bcs-section .bcs-copy {
    padding: 48px 24px;
  }
  footer.cw-footer {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px 28px;
  }
  .cw-page-hero {
    padding: 120px 24px 56px;
  }
  .cw-section {
    padding: 64px 24px;
  }
  .moulds-toolbar {
    padding: 20px 24px;
  }
  .moulds-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 24px 64px;
  }
  .moulds-grid .design-cta {
    grid-column: span 2;
    grid-row: auto;
  }
  .categories-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .range-strip {
    grid-template-columns: 1fr 1fr;
  }
  .machine-detail {
    grid-template-columns: 1fr;
  }
  .machine-detail.flip {
    direction: ltr;
  }
  .machine-detail .copy {
    padding: 48px 24px;
  }
  .chef-feature {
    grid-template-columns: 1fr;
  }
  .chef-feature .copy {
    padding: 48px 24px;
  }
  .courses {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }
  .visit-info {
    grid-template-columns: 1fr;
    padding: 64px 24px;
    gap: 36px;
  }
  .visit-info .visit-blocks {
    grid-template-columns: 1fr;
  }
  .gallery-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-tiles .tile.wide {
    grid-column: span 2;
  }
  .showroom-hero-page .content {
    padding: 0 24px 56px;
  }
}
.cw-hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 92vh;
  background: var(--ink);
  padding-top: 68px;
}
.cw-hero-split .hs-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
  gap: 26px;
}
.cw-hero-split .hs-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--caramel);
}
.cw-hero-split h1 {
  font-family: "Gotu", sans-serif;
  font-size: clamp(44px, 4.6vw, 74px);
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.5px;
}
.cw-hero-split .hs-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
}
.cw-hero-split .hs-actions {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.cw-hero-split .hs-media {
  position: relative;
  overflow: hidden;
}
.cw-hero-split .hs-media video, .cw-hero-split .hs-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .cw-hero-split {
    grid-template-columns: 1fr;
  }
  .cw-hero-split .hs-media {
    min-height: 46vh;
    position: relative;
  }
}
.cw-newsletter {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--biscuit);
  padding: 72px;
}
.cw-newsletter .nl-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 14px;
}
.cw-newsletter h2 {
  font-family: "Gotu", sans-serif;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.25;
  color: var(--ink);
}
.cw-newsletter form {
  display: flex;
  gap: 12px;
}
.cw-newsletter input {
  flex: 1;
  padding: 16px 18px;
  border: 1px solid rgba(10, 10, 10, 0.25);
  background: var(--white);
  font-size: 14px;
  font-family: inherit;
}
.cw-newsletter button {
  padding: 16px 28px;
  background: var(--ink);
  color: var(--white);
  border: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 900px) {
  .cw-newsletter {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }
}
#cw-nav .nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-right: 24px;
}
#cw-nav .nav-icons a {
  display: flex;
  opacity: 0.8;
  transition: opacity 0.2s;
}
#cw-nav .nav-icons a:hover {
  opacity: 1;
}

#cw-nav .cw-mega {
  position: absolute;
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.1);
  box-shadow: 0 18px 44px rgba(10, 10, 10, 0.14);
  padding: 26px 30px 22px;
  min-width: 430px;
  z-index: 120;
}
#cw-nav .cw-mega .mega-cols {
  display: flex;
  gap: 52px;
}
#cw-nav .cw-mega .mega-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 160px;
}
#cw-nav .cw-mega .mega-head {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 4px;
}
#cw-nav .cw-mega .mega-col a {
  font-size: 13px;
  color: var(--ink);
  opacity: 0.85;
  white-space: nowrap;
  transition: color 0.15s, opacity 0.15s;
}
#cw-nav .cw-mega .mega-col a:hover {
  opacity: 1;
  color: var(--caramel);
}
#cw-nav .cw-mega .mega-col a.accent {
  color: var(--caramel);
  opacity: 1;
}
#cw-nav .cw-mega .mega-cta {
  align-self: flex-start;
  padding: 10px 18px;
  border: 1.2px solid var(--ink);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink);
  transition: background 0.15s, color 0.15s;
}
#cw-nav .cw-mega .mega-cta:hover {
  background: var(--ink);
  color: var(--white);
}
#cw-nav .cw-mega.small {
  left: auto;
  right: 0;
  transform: none;
  min-width: 200px;
}

#cw-nav .cw-mega.products {
  min-width: 0;
  width: max-content;
  max-width: 1040px;
  padding: 30px 34px;
}

#cw-nav .cw-mega.products .mega-body {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

#cw-nav .cw-mega.products .mega-cols {
  gap: 42px;
}

#cw-nav .cw-mega.products .mega-col {
  min-width: 150px;
}

#cw-nav .cw-mega.products .mega-col a.accent {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
}

#cw-nav .cw-mega.shopcats {
  max-width: 1140px;
  padding: 30px 36px;
}

#cw-nav .cw-mega.shopcats .mega-cols {
  gap: 34px;
}

#cw-nav .cw-mega.shopcats .mega-col {
  min-width: 0;
}

#cw-nav .cw-mega a.mega-head {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
  opacity: 1;
  margin-bottom: 4px;
  text-decoration: none;
}

#cw-nav .cw-mega a.mega-head:hover {
  color: var(--ink);
  opacity: 1;
}

#cw-nav .mega-promo {
  width: 250px;
  background: #F8F0E6;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

#cw-nav .mega-promo .mega-head {
  margin-bottom: 0;
}

#cw-nav .mega-promo p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.82;
  margin: 0;
}

#cw-nav .mega-promo .mega-cta {
  margin-top: auto;
}

#cw-nav .mega-promo a.accent {
  font-size: 12.5px;
  color: var(--caramel);
}

#cw-nav .nav-item:hover .cw-mega, #cw-nav .cw-mega:hover {
  display: flex;
}

#cw-nav .nav-item::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 0;
  height: 68px;
}

.cw-shop-hero {
  background: var(--ink);
  color: var(--biscuit);
}
.cw-shop-hero .cw-shop-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 440px;
}
.cw-shop-hero .copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 96px 72px 72px;
}
.cw-shop-hero .eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--caramel);
}
.cw-shop-hero h1 {
  font-family: "Gotu", sans-serif;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.04;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.5px;
}
.cw-shop-hero p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 440px;
  margin: 0;
}
.cw-shop-hero .actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cw-shop-hero .media {
  background-size: cover;
  background-position: center;
  min-height: 340px;
}

@media (max-width: 900px) {
  .cw-shop-hero .cw-shop-hero-inner {
    grid-template-columns: 1fr;
  }
  .cw-shop-hero .copy {
    padding: 88px 24px 40px;
  }
  .cw-shop-hero .media {
    min-height: 240px;
  }
}
.cw-shop-cats {
  margin: 4px 0 28px;
  font-family: "Geist", sans-serif;
}

.cw-shop-cats .csc-head {
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 500;
  margin-bottom: 8px;
}

.cw-shop-cats .csc-group {
  border-top: 1px solid rgba(10, 10, 10, 0.1);
}

.cw-shop-cats .csc-group:last-child {
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.cw-shop-cats .csc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  background: none;
  border: 0;
  padding: 12px 2px;
  cursor: pointer;
  text-align: left;
}

.cw-shop-cats .csc-name {
  font-size: 14px;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 500;
}

.cw-shop-cats .csc-top:hover .csc-name {
  color: var(--caramel);
}

.cw-shop-cats .csc-ic {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.cw-shop-cats .csc-ic::before, .cw-shop-cats .csc-ic::after {
  content: "";
  position: absolute;
  background: var(--caramel);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cw-shop-cats .csc-ic::before {
  left: 0;
  top: 5px;
  width: 12px;
  height: 2px;
}

.cw-shop-cats .csc-ic::after {
  left: 5px;
  top: 0;
  width: 2px;
  height: 12px;
}

.cw-shop-cats .csc-group.csc-open .csc-ic::after {
  transform: scaleY(0);
  opacity: 0;
}

.cw-shop-cats .csc-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.cw-shop-cats .csc-group.csc-open .csc-sub {
  max-height: 560px;
}

.cw-shop-cats .csc-sub a {
  display: block;
  font-size: 13px;
  color: rgba(10, 10, 10, 0.72);
  padding: 6px 2px 6px 13px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.cw-shop-cats .csc-sub a:hover {
  color: var(--caramel);
}

.cw-shop-cats .csc-sub a:last-child {
  padding-bottom: 14px;
}

.cw-shop-cats .csc-sub a.csc-all {
  color: var(--caramel);
  font-weight: 500;
  padding-top: 2px;
}

#products_grid_before {
  top: 84px;
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 10, 10, 0.25) transparent;
}

#products_grid_before::-webkit-scrollbar {
  width: 8px;
}

#products_grid_before::-webkit-scrollbar-thumb {
  background: rgba(10, 10, 10, 0.18);
  border-radius: 4px;
}

#products_grid_before .o_wsale_products_grid_before_rail {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.cw-faq .cw-narrow {
  max-width: 820px;
}

.cw-faq .faq-group {
  margin-bottom: 46px;
}

.cw-faq .faq-group-title {
  font-family: "Gotu", sans-serif;
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 14px;
}

.cw-faq .faq-item {
  border-top: 1px solid rgba(10, 10, 10, 0.1);
}

.cw-faq .faq-group .faq-item:last-child {
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.cw-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 40px 18px 2px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.cw-faq summary::-webkit-details-marker {
  display: none;
}

.cw-faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 15px;
  font-size: 22px;
  line-height: 1;
  color: var(--caramel);
  font-weight: 400;
}

.cw-faq details[open] summary::after {
  content: "−";
}

.cw-faq summary:hover {
  color: var(--caramel);
}

.cw-faq .faq-a {
  padding: 0 40px 20px 2px;
}

.cw-faq .faq-a p {
  font-size: 15px;
  line-height: 1.66;
  color: rgba(10, 10, 10, 0.74);
  margin: 0;
}

.cw-faq .faq-a a {
  color: var(--caramel);
}

.cw-lighthero {
  background: var(--biscuit);
  padding: 140px 72px 56px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.cw-lighthero h1 {
  font-family: "Gotu", sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -1px;
  color: var(--ink);
  max-width: 780px;
}
.cw-lighthero .lh-sub {
  margin-top: 22px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.72;
}

.breadcrumb-cw.dark {
  color: var(--ink);
  opacity: 0.5;
}
.breadcrumb-cw.dark a:hover {
  color: var(--caramel);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px 72px 88px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(10, 10, 10, 0.12);
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s;
}
.cat-card:hover {
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.1);
  transform: translateY(-3px);
}
.cat-card .cat-cover {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-color: #ECEAE6;
}
.cat-card .cat-cover.empty {
  background: #ECEAE6;
}
.cat-card .cat-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.cat-card .cat-edition {
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--caramel);
}
.cat-card .cat-title {
  font-family: "Gotu", sans-serif;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.1;
}
.cat-card .cat-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.66;
  flex: 1;
}
.cat-card .cat-link {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-top: 6px;
}
.cat-card .cat-link.muted {
  color: var(--ink);
  opacity: 0.5;
}
.cat-card .cat-link:hover {
  opacity: 1;
}

@media (max-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cat-grid {
    grid-template-columns: 1fr;
    padding: 24px 24px 64px;
  }
  .cw-lighthero {
    padding: 120px 24px 40px;
  }
}
#cw-nav.force-solid {
  background: var(--chocolate);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

.oe_website_login_container {
  padding-top: 120px;
  padding-bottom: 64px;
}

#wrap.o_wsale_product_page,
#wrap.o_portal_wrap,
#wrap.o_wsale_checkout,
div.oe_cart {
  padding-top: 92px;
}

@media (max-width: 900px) {
  #cw-nav {
    padding: 0 20px;
  }
  #cw-nav .nav-burger {
    display: flex;
  }
  #cw-nav .nav-utils {
    display: none;
  }
  #cw-nav .nav-links {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: auto;
    background: var(--chocolate);
    overflow-y: auto;
    padding: 0 0 40px;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    visibility: hidden;
  }
  #cw-nav.mobile-open {
    background: var(--chocolate);
  }
  #cw-nav.mobile-open .nav-links {
    transform: none;
    visibility: visible;
  }
  #cw-nav.mobile-open .nav-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  #cw-nav.mobile-open .nav-burger span:nth-child(2) {
    opacity: 0;
  }
  #cw-nav.mobile-open .nav-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  #cw-nav .nav-links > a, #cw-nav .nav-item > .top {
    height: auto;
    width: 100%;
    box-sizing: border-box;
    padding: 17px 22px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #cw-nav .nav-item {
    display: block;
    height: auto;
    width: 100%;
    position: static;
  }
  #cw-nav .nav-item > .top .caret {
    transition: transform 0.2s;
    font-size: 13px;
    opacity: 0.7;
  }
  #cw-nav .nav-item.acc-open > .top .caret {
    transform: rotate(180deg);
  }
  #cw-nav .cw-mega, #cw-nav .cw-mega.products {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    display: none;
    width: auto;
    max-width: none;
    min-width: 0;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 22px 20px;
    gap: 0;
  }
  #cw-nav .nav-item.acc-open > .cw-mega {
    display: block;
  }
  #cw-nav .cw-mega .mega-cols,
  #cw-nav .cw-mega.products .mega-body,
  #cw-nav .cw-mega.products .mega-cols {
    display: block;
    gap: 0;
  }
  #cw-nav .cw-mega .mega-col {
    min-width: 0;
    margin-top: 14px;
  }
  #cw-nav .cw-mega .mega-head {
    color: var(--caramel);
  }
  #cw-nav .cw-mega .mega-col a, #cw-nav .mega-promo p {
    color: #fff;
    opacity: 0.82;
    white-space: normal;
  }
  #cw-nav .cw-mega .mega-col a.accent, #cw-nav .mega-promo a.accent {
    color: var(--caramel);
    opacity: 1;
  }
  #cw-nav .mega-promo {
    width: auto;
    background: transparent;
    padding: 16px 0 0;
  }
  #cw-nav .cw-mega .mega-cta {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    margin-top: 16px;
  }
  #cw-nav .nav-mobile-foot {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px 22px 8px;
    margin-top: auto;
  }
  #cw-nav .nav-mobile-lang {
    display: flex;
    gap: 20px;
  }
  #cw-nav .nav-mobile-lang a {
    color: var(--biscuit);
    opacity: 0.5;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  #cw-nav .nav-mobile-lang a.active {
    color: var(--caramel);
    opacity: 1;
  }
  #cw-nav .nav-mobile-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--caramel);
    color: #fff;
    padding: 16px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  #cw-nav .nav-search-m {
    display: flex;
    margin: 18px 22px 4px;
  }
  #cw-nav .nav-search-m input {
    flex: 1;
    width: auto;
  }
  #cw-nav .nav-mobile-account {
    display: flex;
    flex-direction: column;
    gap: 13px;
  }
  #cw-nav .nav-mobile-account a {
    color: var(--biscuit);
    opacity: 0.82;
    font-size: 14px;
  }
  #cw-nav .nav-mobile-account a.accent {
    color: var(--caramel);
    opacity: 1;
  }
  #cw-nav .nav-mobile-acct-head {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--caramel);
  }
  body.cw-nav-locked {
    overflow: hidden;
  }
}
@media (max-width: 767.98px) {
  .row.o_grid_mode {
    display: block !important;
    height: auto !important;
  }
  .o_grid_mode > .o_grid_item {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-area: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin-bottom: 14px !important;
  }
}

.o_footer_copyright, .o_footer_copyright_name, section.o_footer_copyright { display:none !important; }
