/*
 * CFM visual system
 * The templates keep the original CMS data bindings; this file owns the new visual language.
 */
:root {
  --cf-redesign-forest: #193c35;
  --cf-redesign-forest-deep: #102b26;
  --cf-redesign-paper: #f4efe6;
  --cf-redesign-cream: #fffdf8;
  --cf-redesign-ink: #1c2b28;
  --cf-redesign-muted: #728078;
  --cf-redesign-red: #cf583c;
  --cf-redesign-gold: #e2a340;
  --cf-redesign-line: rgba(25, 60, 53, 0.18);
}

body {
  background: var(--cf-redesign-paper);
  color: var(--cf-redesign-ink);
}

body a {
  color: inherit;
}

body a:hover {
  color: var(--cf-redesign-red);
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.04em;
}

body.index-page .cf-site-header {
  position: fixed !important;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 78px;
  padding: 16px 0;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body:not(.index-page) .cf-site-header {
  position: fixed !important;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 78px;
  padding: 16px 0;
  background: var(--cf-redesign-forest) !important;
  border: 0;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(16, 43, 38, 0.18);
}

body.scrolled .cf-site-header {
  background: rgba(244, 239, 230, 0.97) !important;
  box-shadow: 0 8px 24px rgba(16, 43, 38, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cf-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  text-decoration: none;
}

.cf-brand img {
  display: block;
  width: 186px !important;
  height: auto !important;
  max-height: 42px !important;
  object-fit: contain;
  margin: 0 !important;
}

.cf-brand-note {
  display: none;
  flex-direction: column;
  gap: 2px;
  color: #fff;
  line-height: 1;
}

.cf-brand-note strong {
  font-size: 14px;
  letter-spacing: 0.16em;
}

.cf-brand-note small {
  color: rgba(255, 253, 248, 0.66);
  font-size: 8px;
  letter-spacing: 0.13em;
}

body.scrolled .cf-brand-note {
  color: var(--cf-redesign-forest);
}

body.scrolled .cf-brand-note small {
  color: var(--cf-redesign-muted);
}

.cf-main-nav {
  flex: 1 1 auto;
  min-width: 0;
  order: 2 !important;
}

.cf-main-nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cf-main-nav > ul > li {
  position: relative;
  white-space: nowrap;
}

.cf-main-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 8px;
  color: rgba(255, 253, 248, 0.82) !important;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.cf-main-nav > ul > li > a:hover,
.cf-main-nav > ul > li > a.active {
  color: #fff;
}

body.scrolled .cf-main-nav > ul > li > a {
  color: var(--cf-redesign-ink) !important;
}

body.scrolled .cf-main-nav > ul > li > a:hover,
body.scrolled .cf-main-nav > ul > li > a.active {
  color: var(--cf-redesign-red);
}

.cf-main-nav .toggle-dropdown {
  font-size: 10px;
}

.cf-main-nav .dropdown > ul {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  display: block;
  min-width: 210px;
  margin: 0;
  padding: 10px;
  background: var(--cf-redesign-cream);
  border: 1px solid var(--cf-redesign-line);
  border-radius: 0;
  box-shadow: 0 18px 36px rgba(16, 43, 38, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.cf-main-nav .dropdown:hover > ul,
.cf-main-nav .dropdown-active > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cf-main-nav .dropdown > ul > li {
  display: block;
  list-style: none;
}

.cf-main-nav .dropdown > ul > li > a {
  display: block;
  padding: 10px 12px;
  color: var(--cf-redesign-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.cf-main-nav .dropdown > ul > li > a:hover {
  color: var(--cf-redesign-red);
  background: #f4efe6;
}

.cf-main-nav .cf-language > a {
  gap: 5px;
}

.cf-main-nav .cf-language img {
  width: 20px !important;
  height: auto !important;
  margin-right: 7px;
}

.cf-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  order: 3 !important;
}

body.index-page:not(.scrolled) .cf-brand img,
body:not(.index-page) .cf-brand img {
  filter: brightness(0) invert(1);
}

body.scrolled .cf-brand img {
  filter: none;
}

.cf-header-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 253, 248, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.cf-header-link i {
  font-size: 13px;
}

.cf-header-link:hover {
  color: var(--cf-redesign-gold);
  border-color: var(--cf-redesign-gold);
}

body.scrolled .cf-header-link {
  color: var(--cf-redesign-forest);
  border-color: var(--cf-redesign-forest);
}

.cf-header-actions .header-social-links {
  display: flex;
  gap: 6px;
}

.cf-header-actions .header-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #fff !important;
  background: transparent;
  border: 1px solid rgba(255, 253, 248, 0.46);
  border-radius: 50%;
  font-size: 13px;
  text-decoration: none;
}

body.scrolled .cf-header-actions .header-social-links a {
  color: var(--cf-redesign-forest) !important;
  border-color: var(--cf-redesign-line);
}

.cf-header-actions .header-social-links a:hover {
  color: var(--cf-redesign-forest) !important;
  background: var(--cf-redesign-gold);
  border-color: var(--cf-redesign-gold);
}

.cf-hero {
  position: relative;
  min-height: 790px;
  padding: 148px 0 70px;
  overflow: hidden;
  color: #fff;
  background: var(--cf-redesign-forest);
}

.cf-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 9%;
  bottom: 0;
  width: 1px;
  background: rgba(255, 253, 248, 0.16);
}

.cf-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 130px);
  min-height: 575px;
}

.cf-hero-copy {
  max-width: 650px;
}

.cf-kicker,
.cf-hero-note,
.cf-section-index,
.cf-hero-visual-bottom span,
.cf-quality-copy .cf-section-index,
.cf-footer-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cf-kicker {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
  color: var(--cf-redesign-gold);
}

.cf-kicker span + span {
  padding-left: 18px;
  border-left: 1px solid rgba(226, 163, 64, 0.55);
}

.cf-hero h1 {
  max-width: 690px;
  margin: 0 0 25px;
  color: #fff;
  font-size: clamp(3.5rem, 6.5vw, 6.7rem);
  font-weight: 800;
  line-height: 0.94;
}

.cf-hero h1 em {
  color: var(--cf-redesign-gold);
  font-style: normal;
}

.cf-hero-copy > p {
  max-width: 470px;
  margin: 0 0 32px;
  color: rgba(255, 253, 248, 0.74);
  font-size: 17px;
  line-height: 1.75;
}

.cf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.cf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border 180ms ease, transform 180ms ease;
}

.cf-button:hover {
  transform: translateY(-2px);
}

.cf-button-light {
  color: var(--cf-redesign-forest);
  background: var(--cf-redesign-cream);
}

.cf-button-light:hover {
  color: var(--cf-redesign-forest);
  background: var(--cf-redesign-gold);
}

.cf-button-line {
  color: #fff;
  border-color: rgba(255, 253, 248, 0.5);
}

.cf-button-line:hover {
  color: var(--cf-redesign-forest);
  background: #fff;
  border-color: #fff;
}

.cf-hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 58px;
  color: rgba(255, 253, 248, 0.5);
}

.cf-hero-visual {
  position: relative;
  aspect-ratio: 1.05 / 1;
  min-height: 430px;
  overflow: hidden;
  background: var(--cf-redesign-forest-deep);
  border: 1px solid rgba(255, 253, 248, 0.3);
}

.cf-hero-visual video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cf-hero-visual video {
  z-index: 1;
  opacity: 1;
  filter: saturate(0.84) contrast(1.04);
}

.cf-hero-visual video:not([src]) {
  background: center / cover no-repeat url("../picture/aboutvideo.webp");
}

.cf-hero-visual-bottom {
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cf-hero-visual-bottom {
  bottom: 0;
  align-items: flex-end;
  padding: 22px;
  color: #fff;
  background: rgba(16, 43, 38, 0.9);
}

.cf-hero-visual-bottom div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-hero-visual-bottom strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cf-hero-visual-bottom button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 253, 248, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cf-hero-visual-bottom button:hover {
  color: var(--cf-redesign-forest);
  background: #fff;
}

.cf-hero-scroll {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.cf-hero-scroll i {
  color: var(--cf-redesign-gold);
  font-size: 16px;
}

.cf-signal-bar {
  border-bottom: 1px solid var(--cf-redesign-line);
  background: var(--cf-redesign-cream);
}

.cf-signal-bar .container-xl {
  display: grid;
  grid-template-columns: 2.2fr repeat(4, 1fr);
  align-items: stretch;
}

.cf-signal-lead,
.cf-signal-stat {
  min-height: 120px;
  padding: 28px 22px;
}

.cf-signal-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0;
}

.cf-signal-lead span {
  margin-bottom: 7px;
  color: var(--cf-redesign-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.cf-signal-lead strong {
  max-width: 280px;
  color: var(--cf-redesign-forest);
  font-size: 17px;
  line-height: 1.25;
}

.cf-signal-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--cf-redesign-line);
}

.cf-signal-stat strong {
  color: var(--cf-redesign-forest);
  font-size: 29px;
  line-height: 1;
}

.cf-signal-stat span {
  margin-top: 8px;
  color: var(--cf-redesign-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cf-products,
.cf-story,
.cf-quality-strip,
.cf-news,
.cf-home-cta {
  padding: 112px 0;
}

.cf-products {
  background: #e9e2d5;
}

.cf-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 55px;
  align-items: end;
  margin-bottom: 48px;
}

.cf-section-index {
  display: block;
  margin-bottom: 14px;
  color: var(--cf-redesign-red);
}

.cf-section-heading h2,
.cf-quality-copy h2,
.cf-home-cta h2 {
  max-width: 680px;
  margin: 0;
  color: var(--cf-redesign-forest);
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  font-weight: 800;
  line-height: 0.94;
}

.cf-section-heading > p,
.cf-quality-copy > p {
  max-width: 380px;
  margin: 0 0 4px;
  color: var(--cf-redesign-muted);
  font-size: 15px;
  line-height: 1.75;
}

.cf-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cf-product-card {
  position: relative;
  min-height: 505px;
  overflow: hidden;
  background: var(--cf-redesign-forest);
}

.cf-product-card::before,
.cf-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.cf-product-card::before {
  background-image: var(--card-image);
  background-position: center;
  background-size: cover;
  filter: saturate(0.72);
  transition: transform 500ms ease, filter 500ms ease;
}

.cf-product-card::after {
  background: rgba(16, 43, 38, 0.3);
}

.cf-product-card:hover::before {
  filter: saturate(1.08);
  transform: scale(1.08);
}

.cf-card-red::after {
  background: rgba(96, 39, 30, 0.42);
}

.cf-card-gold::after {
  background: rgba(93, 69, 22, 0.34);
}

.cf-card-green::after {
  background: rgba(20, 67, 51, 0.4);
}

.cf-card-ink::after {
  background: rgba(20, 42, 49, 0.4);
}

.cf-product-card-content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 265px;
  padding: 24px;
  color: #fff;
  background: rgba(16, 43, 38, 0.86);
}

.cf-card-number {
  display: block;
  margin-bottom: 35px;
  color: var(--cf-redesign-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.cf-product-card h3 {
  margin: 0 0 17px;
  font-size: 28px;
  font-weight: 800;
}

.cf-product-card h3 a {
  color: #fff;
  text-decoration: none;
}

.cf-product-card h3 a:hover {
  color: var(--cf-redesign-gold);
}

.cf-product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 62px;
  overflow: hidden;
}

.cf-product-links a {
  padding: 5px 7px;
  color: rgba(255, 253, 248, 0.8);
  border: 1px solid rgba(255, 253, 248, 0.3);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.cf-product-links a:hover {
  color: var(--cf-redesign-forest);
  background: var(--cf-redesign-gold);
  border-color: var(--cf-redesign-gold);
}

.cf-card-link,
.cf-text-link,
.cf-news-all {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cf-redesign-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.cf-card-link {
  margin-top: 22px;
  color: var(--cf-redesign-gold);
}

.cf-card-link i,
.cf-text-link i,
.cf-news-all i {
  transition: transform 180ms ease;
}

.cf-card-link:hover,
.cf-text-link:hover,
.cf-news-all:hover {
  color: var(--cf-redesign-forest);
}

.cf-product-card .cf-card-link:hover {
  color: #fff;
}

.cf-card-link:hover i,
.cf-text-link:hover i,
.cf-news-all:hover i {
  transform: translate(3px, -3px);
}

.cf-story {
  background: var(--cf-redesign-paper);
}

.cf-story-heading {
  margin-bottom: 60px;
}

.cf-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(38px, 8vw, 120px);
  align-items: center;
}

.cf-story-media {
  position: relative;
  min-height: 560px;
  background: var(--cf-redesign-forest);
}

.cf-story-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(0.82);
}

.cf-story-stamp {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 150px;
  padding: 17px;
  color: var(--cf-redesign-forest);
  background: var(--cf-redesign-gold);
}

.cf-story-stamp span,
.cf-story-stamp small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.cf-story-stamp strong {
  font-size: 34px;
  line-height: 1;
}

.cf-story-copy {
  max-width: 570px;
}

.cf-story-lead {
  margin: 0 0 34px;
  color: var(--cf-redesign-forest);
  font-size: 22px;
  line-height: 1.45;
}

.cf-story-points {
  border-top: 1px solid var(--cf-redesign-line);
}

.cf-story-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cf-redesign-line);
}

.cf-story-point > span {
  color: var(--cf-redesign-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.cf-story-point h3 {
  margin: 0 0 6px;
  color: var(--cf-redesign-forest);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.cf-story-point p {
  margin: 0;
  color: var(--cf-redesign-muted);
  font-size: 14px;
  line-height: 1.55;
}

.cf-story-copy .cf-text-link {
  margin-top: 30px;
}

.cf-story-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 75px;
}

.cf-story-tiles figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background: var(--cf-redesign-forest);
}

.cf-story-tiles figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 43, 38, 0.35);
}

.cf-story-tiles img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 450ms ease;
}

.cf-story-tiles figure:hover img {
  transform: scale(1.06);
}

.cf-story-tiles figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 17px;
  left: 18px;
  color: #fff;
}

.cf-story-tiles figcaption span {
  display: block;
  margin-bottom: 6px;
  color: var(--cf-redesign-gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.cf-story-tiles figcaption strong {
  font-size: 17px;
}

.cf-quality-strip {
  color: #fff;
  background: var(--cf-redesign-forest-deep);
}

.cf-quality-strip .container-xl {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) 1.2fr;
  gap: 70px;
  align-items: center;
}

.cf-quality-copy h2 {
  color: #fff;
  font-size: clamp(2.5rem, 4.8vw, 5rem);
}

.cf-quality-copy > p {
  margin-top: 22px;
  color: rgba(255, 253, 248, 0.65);
}

.cf-quality-copy .cf-text-link {
  margin-top: 26px;
  color: var(--cf-redesign-gold);
}

.cf-quality-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cf-quality-logos img {
  display: block;
  width: 100%;
  height: 150px;
  padding: 13px;
  object-fit: contain;
  background: #fff;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 180ms ease, opacity 180ms ease;
}

.cf-quality-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.team-3 {
  padding: 112px 0;
  background: #e9e2d5;
}

.team-3 .section-title {
  margin-bottom: 45px;
}

.team-3 .section-title h2 {
  color: var(--cf-redesign-forest);
}

.team-3 .section-title p {
  color: var(--cf-redesign-muted);
}

.team-3 .container-fluid {
  max-width: 1450px;
  margin: 0 auto;
}

.team-3 .member {
  width: 100%;
  padding: 20px;
  background: var(--cf-redesign-cream);
  border: 1px solid var(--cf-redesign-line);
  border-radius: 0;
  box-shadow: none;
}

.team-3 .member img {
  width: 100%;
  aspect-ratio: 1;
  padding: 0 !important;
  object-fit: cover;
  border-radius: 0 !important;
  filter: saturate(0.78);
}

.team-3 .member h4 {
  margin: 17px 0 3px;
  color: var(--cf-redesign-forest);
  font-size: 20px;
}

.team-3 .member span {
  color: var(--cf-redesign-muted);
  font-size: 12px;
}

.team-3 .member .social {
  justify-content: flex-start;
  gap: 6px;
  margin-top: 18px;
}

.team-3 .member .social a {
  width: 30px;
  height: 30px;
  color: var(--cf-redesign-forest);
  border: 1px solid var(--cf-redesign-line);
  border-radius: 50%;
}

.team-3 .member .social a:hover {
  color: #fff;
  background: var(--cf-redesign-red);
  border-color: var(--cf-redesign-red);
}

.cf-news {
  background: var(--cf-redesign-cream);
}

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

.cf-news-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--cf-redesign-line);
}

.cf-news-image {
  position: relative;
  display: block;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  background: #e9e2d5;
}

.cf-news-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 450ms ease, filter 450ms ease;
}

.cf-news-image:hover img {
  filter: saturate(1);
  transform: scale(1.05);
}

.cf-news-image span {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 7px 9px;
  color: #fff;
  background: var(--cf-redesign-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cf-news-meta {
  display: flex;
  gap: 14px;
  margin: 19px 0 11px;
  color: var(--cf-redesign-red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cf-news-meta span + span {
  padding-left: 14px;
  border-left: 1px solid var(--cf-redesign-line);
}

.cf-news-item h3 {
  min-height: 66px;
  margin: 0 0 21px;
  color: var(--cf-redesign-forest);
  font-size: 22px;
  line-height: 1.16;
}

.cf-news-item h3 a {
  text-decoration: none;
}

.cf-news-item h3 a:hover {
  color: var(--cf-redesign-red);
}

.cf-news-all {
  margin-top: 36px;
}

.cf-home-cta {
  color: var(--cf-redesign-forest);
  background: var(--cf-redesign-gold);
}

.cf-home-cta .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 25px 50px;
}

.cf-home-cta .cf-section-index {
  width: 100%;
  margin-bottom: -4px;
  color: var(--cf-redesign-forest);
}

.cf-home-cta h2 {
  flex: 1 1 540px;
}

.cf-button-dark {
  flex: 0 0 auto;
  color: #fff;
  background: var(--cf-redesign-forest);
}

.cf-button-dark:hover {
  color: #fff;
  background: var(--cf-redesign-forest-deep);
}

.cf-home-contact .contact-3 {
  padding: 112px 0;
  background: var(--cf-redesign-paper);
}

.cf-home-contact .contact-3 .container {
  max-width: 1320px;
}

.cf-home-contact .contact-3 .contact-main-wrapper {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
}

.cf-home-contact .contact-3 .map-wrapper {
  height: 100%;
  min-height: 610px;
  border-radius: 0;
  filter: saturate(0.7);
}

.cf-home-contact .contact-3 .contact-content {
  gap: 16px;
}

.cf-home-contact .contact-3 .contact-cards-container {
  gap: 12px;
}

.cf-home-contact .contact-3 .contact-card,
.cf-home-contact .contact-3 .contact-form-container {
  padding: 22px;
  background: var(--cf-redesign-cream);
  border: 1px solid var(--cf-redesign-line);
  border-radius: 0;
  box-shadow: none;
}

.cf-home-contact .contact-3 .contact-card {
  gap: 13px;
}

.cf-home-contact .contact-3 .contact-card .icon-box {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  background: #e9e2d5;
  border-radius: 50%;
}

.cf-home-contact .contact-3 .contact-card .icon-box i {
  color: var(--cf-redesign-red);
  font-size: 16px;
}

.cf-home-contact .contact-3 .contact-card .contact-text h4 {
  margin: 3px 0 5px;
  color: var(--cf-redesign-forest);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.cf-home-contact .contact-3 .contact-card .contact-text p {
  color: var(--cf-redesign-muted);
  font-size: 12px;
  line-height: 1.5;
}

.cf-home-contact .contact-3 .contact-form-container h3 {
  padding-left: 0;
  color: var(--cf-redesign-forest);
  font-size: 30px;
}

.cf-home-contact .contact-3 .contact-form-container h3::before {
  display: none;
}

.cf-home-contact .contact-3 .contact-form-container > p {
  color: var(--cf-redesign-muted);
}

.cf-home-contact .contact-3 .contact-form-container .frm-data .form-control {
  border-radius: 0;
  border-color: var(--cf-redesign-line);
  background: var(--cf-redesign-paper);
}

.cf-home-contact .contact-3 .contact-form-container .frm-data button {
  border-radius: 0;
  background: var(--cf-redesign-red);
}

.cf-home-contact .contact-3 .contact-form-container .frm-data button:hover {
  background: var(--cf-redesign-forest);
}

.cf-footer {
  padding: 0;
  color: rgba(255, 253, 248, 0.7);
  background: var(--cf-redesign-forest-deep);
}

.cf-footer::before {
  display: none;
}

.cf-footer-top {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.75fr 1fr;
  gap: 48px;
  padding-top: 75px;
  padding-bottom: 65px;
}

.cf-footer-logo {
  display: block;
  width: fit-content;
  margin-bottom: 20px;
}

.cf-footer-logo img {
  display: block;
  width: 195px !important;
  height: auto !important;
  max-height: 48px;
  object-fit: contain;
}

.cf-footer-intro {
  max-width: 270px;
  margin: 0 0 24px;
  color: rgba(255, 253, 248, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.cf-footer-contact p {
  margin: 0 0 8px;
  color: rgba(255, 253, 248, 0.55);
  font-size: 12px;
  line-height: 1.5;
}

.cf-footer-contact strong {
  margin-right: 7px;
  color: var(--cf-redesign-gold);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cf-footer .social-links {
  display: flex;
  gap: 7px;
  margin-top: 22px;
}

.cf-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--cf-redesign-forest);
  background: var(--cf-redesign-gold);
  border-radius: 50%;
  font-size: 14px;
}

.cf-footer .social-links a:hover {
  color: #fff;
  background: var(--cf-redesign-red);
}

.cf-footer-label {
  display: block;
  margin-bottom: 19px;
  color: var(--cf-redesign-gold);
}

.cf-footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cf-footer-column li {
  margin-bottom: 10px;
}

.cf-footer-column a {
  color: rgba(255, 253, 248, 0.66);
  font-size: 12px;
  text-decoration: none;
}

.cf-footer-column a:hover {
  color: #fff;
}

.cf-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.cf-qr-grid div {
  min-width: 0;
}

.cf-qr-grid img {
  display: block;
  width: 100% !important;
  height: auto !important;
  padding: 7px;
  background: #fff;
}

.cf-qr-grid small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cf-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 18px;
  padding-bottom: 19px;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
}

.cf-footer-bottom p,
.cf-footer-bottom span {
  margin: 0;
  color: rgba(255, 253, 248, 0.48);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.scroll-top {
  right: 22px;
  bottom: 22px;
  width: 40px;
  height: 40px;
  color: var(--cf-redesign-forest);
  background: var(--cf-redesign-gold);
  border-radius: 0;
}

body:not(.index-page) .main {
  padding-top: 78px;
  background: var(--cf-redesign-paper);
}

body:not(.index-page) .page-title {
  min-height: 390px;
  padding: 170px 0 75px;
  background-color: var(--cf-redesign-forest);
  background-position: center;
}

body:not(.index-page) .page-title::before {
  background: rgba(16, 43, 38, 0.7);
}

body:not(.index-page) .page-title h1 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 6rem);
}

body:not(.index-page) .page-title .breadcrumbs ol li,
body:not(.index-page) .page-title .breadcrumbs ol li a {
  color: rgba(255, 253, 248, 0.7);
}

body:not(.index-page) .section-title h2 {
  color: var(--cf-redesign-forest);
}

body:not(.index-page) .products-list,
body:not(.index-page) .products-list-2,
body:not(.index-page) .blog-posts,
body:not(.index-page) .blog-details,
body:not(.index-page) .contact {
  background: var(--cf-redesign-paper);
}

body:not(.index-page) .products-list .product-card,
body:not(.index-page) .products-list-2 .product-box,
body:not(.index-page) .blog-posts article,
body:not(.index-page) .blog-details .blog-details-container,
body:not(.index-page) .contact .info-item,
body:not(.index-page) .contact .php-email-form {
  border-radius: 0;
  border: 1px solid var(--cf-redesign-line);
  box-shadow: none;
}

body:not(.index-page) .products-list .product-card:hover {
  box-shadow: 0 14px 28px rgba(16, 43, 38, 0.12);
}

body:not(.index-page) .products-list .product-card .badge,
body:not(.index-page) .products-list .view-all-btn,
body:not(.index-page) .contact .php-email-form button[type="submit"] {
  border-radius: 0;
  background: var(--cf-redesign-red);
}

body:not(.index-page) .blog-posts article .post-date,
body:not(.index-page) .recent-blog-posts .post-item .post-date {
  border-radius: 0;
  background: var(--cf-redesign-red);
}

/* Keep sidebar news thumbnails aligned even when source images use different ratios. */
body:not(.index-page) .recent-posts-widget .post-item {
  min-height: 64px;
}

body:not(.index-page) .recent-posts-widget .post-item img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  margin-right: 14px;
}

body:not(.index-page) .recent-posts-widget .post-item > div {
  min-width: 0;
  flex: 1 1 auto;
}

body:not(.index-page) .recent-posts-widget .post-item h4 {
  line-height: 1.35;
}

@media (max-width: 1199px) {
  .cf-header-inner {
    gap: 16px;
    justify-content: flex-start;
  }

  .cf-brand-note,
  .cf-header-link,
  .cf-header-actions .header-social-links {
    display: none;
  }

  .cf-header-actions {
    display: none;
  }

  .cf-site-header .cf-main-nav {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .cf-site-header .mobile-nav-toggle {
    display: block !important;
    width: 28px !important;
    height: 22px !important;
    color: #fff !important;
    font-size: 0 !important;
    line-height: 1 !important;
    position: relative;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    cursor: pointer;
  }

  .cf-site-header .mobile-nav-toggle::before,
  .cf-site-header .mobile-nav-toggle::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 28px;
    height: 2px;
    background: currentColor;
    border-radius: 0;
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .cf-site-header .mobile-nav-toggle::after {
    box-shadow: 0 -8px 0 currentColor, 0 8px 0 currentColor;
  }

  body.scrolled .cf-site-header .mobile-nav-toggle {
    color: var(--cf-redesign-forest) !important;
  }

  .cf-site-header .cf-main-nav > ul {
    position: absolute;
    top: 67px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start !important;
    gap: 0;
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    padding: 12px;
    background: var(--cf-redesign-cream);
    border: 1px solid var(--cf-redesign-line);
    box-shadow: 0 16px 30px rgba(16, 43, 38, 0.17);
  }

  body.mobile-nav-active .cf-site-header .cf-main-nav > ul {
    display: flex;
  }

  body.mobile-nav-active .cf-site-header .cf-main-nav {
    background: var(--cf-redesign-forest) !important;
  }

  body.mobile-nav-active .cf-site-header .mobile-nav-toggle {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    margin: 0 !important;
  }

  body.mobile-nav-active .cf-site-header .mobile-nav-toggle::before {
    transform: rotate(45deg);
  }

  body.mobile-nav-active .cf-site-header .mobile-nav-toggle::after {
    box-shadow: none;
    transform: rotate(-45deg);
  }

  .cf-main-nav > ul > li > a {
    justify-content: space-between;
    padding: 12px 10px;
    color: var(--cf-redesign-forest) !important;
  }

  .cf-main-nav .dropdown > ul {
    position: static;
    display: none;
    min-width: 0;
    padding: 5px 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .cf-main-nav .dropdown > .dropdown-active {
    display: block;
  }

  .cf-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1.1fr);
    gap: 45px;
  }

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

  .cf-product-card {
    min-height: 460px;
  }

  .cf-footer-top {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .cf-site-header {
    min-height: 67px !important;
    padding: 12px 0 !important;
  }

  .cf-brand img {
    width: 170px !important;
    max-height: 37px !important;
  }

  .cf-site-header .cf-main-nav > ul {
    top: 58px;
  }

  .cf-hero {
    min-height: 890px;
    padding: 126px 0 62px;
  }

  .cf-hero::before {
    right: 14%;
  }

  .cf-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 42px;
    min-height: 0;
  }

  .cf-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.4rem);
  }

  .cf-hero-copy > p {
    font-size: 15px;
  }

  .cf-hero-note {
    gap: 12px;
    margin-top: 33px;
    font-size: 8px;
  }

  .cf-hero-visual {
    min-height: 330px;
  }

  .cf-hero-scroll {
    display: none;
  }

  .cf-signal-bar .container-xl {
    grid-template-columns: repeat(2, 1fr);
  }

  .cf-signal-lead {
    grid-column: 1 / -1;
    min-height: 95px;
    padding: 24px 0;
  }

  .cf-signal-stat {
    min-height: 90px;
    padding: 20px 15px;
  }

  .cf-signal-stat:nth-child(odd) {
    border-left: 0;
  }

  .cf-products,
  .cf-story,
  .cf-quality-strip,
  .cf-news,
  .cf-home-cta {
    padding: 76px 0;
  }

  .cf-section-heading,
  .cf-story-grid,
  .cf-quality-strip .container-xl {
    display: block;
  }

  .cf-section-heading {
    margin-bottom: 33px;
  }

  .cf-section-heading h2,
  .cf-quality-copy h2,
  .cf-home-cta h2 {
    font-size: clamp(2.6rem, 13vw, 4.8rem);
  }

  .cf-section-heading > p {
    margin-top: 22px;
  }

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

  .cf-product-card {
    min-height: 420px;
  }

  .cf-story-media,
  .cf-story-media img {
    min-height: 390px;
  }

  .cf-story-copy {
    margin-top: 36px;
  }

  .cf-story-lead {
    font-size: 18px;
  }

  .cf-story-tiles {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .cf-story-tiles figure,
  .cf-story-tiles img {
    min-height: 200px;
    height: 200px;
  }

  .cf-quality-strip .container-xl {
    display: block;
  }

  .cf-quality-copy > p {
    margin-top: 20px;
  }

  .cf-quality-logos {
    margin-top: 42px;
  }

  .cf-quality-logos img {
    height: 100px;
  }

  .team-3 {
    padding: 76px 0;
  }

  .team-3 .member {
    padding: 13px;
  }

  .team-3 .member h4 {
    font-size: 16px;
  }

  .team-3 .member .social {
    gap: 3px;
  }

  .cf-news-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .cf-news-item h3 {
    min-height: 0;
  }

  .cf-home-cta .container-xl {
    display: block;
  }

  .cf-home-cta .cf-button {
    margin-top: 28px;
  }

  .cf-home-contact .contact-3 {
    padding: 76px 0;
  }

  .cf-home-contact .contact-3 .contact-main-wrapper {
    display: flex;
    flex-direction: column;
  }

  .cf-home-contact .contact-3 .map-wrapper {
    min-height: 330px;
  }

  .cf-footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 24px;
    padding-top: 58px;
    padding-bottom: 45px;
  }

  .cf-footer-brand {
    grid-column: 1 / -1;
  }

  .cf-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  body:not(.index-page) .main {
    padding-top: 67px;
  }

  body:not(.index-page) .page-title {
    min-height: 330px;
    padding: 132px 0 55px;
  }
}

@media (max-width: 420px) {
  .cf-brand img {
    width: 150px !important;
  }

  .cf-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cf-button {
    width: 100%;
  }

  .cf-quality-logos {
    gap: 6px;
  }

  .cf-quality-logos img {
    height: 83px;
    padding: 6px;
  }
}
