:root {

  --red: #c73535;
  --red-dark: #8a2525;
  --green: #447a55;
  --cream: #fff8ec;
  --soft: #f4f8fc;
  --ink: #0e1b2a;
  --muted: #687384;
  --line: rgba(14, 27, 42, 0.13);
  --white: #fff;
  --shadow: 0 24px 70px rgba(11, 28, 50, 0.12);
  --radius: 0px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  color: var(--ink);
  background: #fff;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
::selection {
  background: var(--red);
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.section-space {
  padding: 120px 0;
}
.section-space-sm {
  padding: 70px 0 110px;
}
.soft-bg {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  padding: 0 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(14, 27, 42, 0.08);
  transition: 0.35s ease;
}
.site-header.scrolled {
  height: 66px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 35px rgba(14, 27, 42, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
}
.brand-mark {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  display: inline-flex;
}
.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
}
.desktop-nav a {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #314052;
  font-weight: 500;
  position: relative;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: 0.35s;
}
.desktop-nav a:hover:after {
  width: 100%;
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  font-weight: 700;
  background: #ffffff59;
  transition: 0.35s ease;
  cursor: pointer;
  border-radius: var(--radius);
}
.nav-cta:hover,
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 14px 30px rgba(12, 77, 162, 0.22);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.78);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  gap: 7px;
  flex-direction: column;
  justify-content: center;
}
.menu-toggle span {
  height: 2px;
  background: var(--ink);
  display: block;
  width: 24px;
}
.mobile-panel {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 40;
  display: none;
  flex-direction: column;
  padding: 20px 28px 30px;
  border-bottom: 1px solid var(--line);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.mobile-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-panel a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  transition: transform 0.1s linear;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 0, 0, 0.842) 0%,
    rgba(0, 0, 0, 0.589) 42%,
    rgba(0, 0, 0, 0) 100%
  );
}
.hero-content {
  position: relative; 
  z-index: 2;
  padding-top: 70px;
}
.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--red);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 28px;
}
.eyebrow:before,
.section-kicker:before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  display: inline-flex;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -4px;
  max-width: 820px;
  margin: 0 0 30px;
  font-weight: 600;
}
.hero-text {
  max-width: 560px;
  font-size: 18px;
  color: #3b4552;
  margin-bottom: 38px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 5px;
  color: #6d7680;
}
.scroll-cue:after {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  background: #9aa3ad;
  margin: 10px auto 0;
  animation: scrollLine 1.6s ease infinite;
}
@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0.3);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
  }
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 80px;
  align-items: center;
}
.section-copy h2,
.section-head h2,
.dark-feature h2,
.cta-strip h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  margin: 0 0 28px;
  font-weight: 600;
}
.section-copy p,
.section-head p {
  color: var(--muted);
  max-width: 590px;
}
.image-stack {
  position: relative;
  min-height: 540px;
}
.stack-main {
  width: 80%;
  height: 470px;
  object-fit: cover;
  margin-left: auto;
  box-shadow: var(--shadow);
}
.stack-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 330px;
  height: 245px;
  object-fit: cover;
  border: 10px solid #fff;
  box-shadow: var(--shadow);
}
.image-frame {
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.image-frame:hover img {
  transform: scale(1.05);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 58px;
}
.section-head p {
  max-width: 430px;
}
.product-row,
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.products-grid {
  grid-template-columns: repeat(3, 1fr);
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.product-card:hover {
  border-color: rgba(14, 27, 42, 0.24);
  box-shadow: 0 18px 40px rgba(14, 27, 42, 0.08);
}
.product-img {
  height: 360px;
  position: relative;
  overflow: hidden;
  background: var(--soft);
}
.product-img:after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.45s ease;
  mix-blend-mode: multiply;
}
.product-card[data-tone="blue"] .product-img:after {
  background: rgba(12, 77, 162, 0.28);
}
.product-card[data-tone="red"] .product-img:after {
  background: rgba(199, 53, 53, 0.26);
}
.product-card[data-tone="cream"] .product-img:after {
  background: rgba(255, 248, 236, 0.5);
  mix-blend-mode: screen;
}
.product-card[data-tone="green"] .product-img:after {
  background: rgba(68, 122, 85, 0.25);
}
.product-card:hover .product-img:after {
  opacity: 1;
}
.product-card:hover .product-img img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.05);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}
.product-info {
  padding: 24px 24px 28px;
}
.product-info span,
.recipe-card span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.product-info h3 {
  font-size: 22px;
  line-height: 1.1;
  margin: 12px 0 8px;
  font-weight: 600;
}
.product-info p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px;
}
.product-info strong {
  color: var(--red);
  font-size: 18px;
}
.product-info a {
  display: inline-flex;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.metric {
  background: #fff;
  padding: 42px 28px;
}
.metric strong {
  display: block;
  font-size: 46px;
  line-height: 1;
  color: var(--red);
  font-weight: 600;
}
.metric span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 600;
}
.dark-feature {
  background: #0b0d0f;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dark-feature:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(12, 77, 162, 0.22),
      transparent 28%
    ),
    radial-gradient(circle at 80% 70%, rgba(199, 53, 53, 0.16), transparent 32%);
}
.dark-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.dark-feature p {
  color: rgba(255, 255, 255, 0.72);
}
.light {
  color: #fff;
}
.quality-bars {
  margin-top: 38px;
}
.quality-bars div {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 20px;
  margin: 24px 0;
}
.quality-bars span {
  font-weight: 600;
}
.quality-bars i {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  position: relative;
}
.quality-bars i:after {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  height: 5px;
  width: var(--w);
  background: var(--red);
  transform-origin: left;
  animation: barGrow 1.1s ease both;
}
@keyframes barGrow {
  from {
    transform: scaleX(0);
  }
}
.floating-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.floating-card p {
  color: var(--muted);
}
.cta-strip {
  background: var(--cream);
  padding: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-strip p {
  max-width: 520px;
  color: var(--muted);
}
.page-hero {
  padding: 168px 0 88px;
  background: linear-gradient(135deg, #fff 0%, #f2f8ff 55%, #fff8ec 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  max-width: 960px;
}
.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}
.values .section-head {
  display: block;
}
.value-grid,
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 38px;
  transition: 0.35s;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.value-card span,
.timeline-item span {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 12px;
}
.value-card h3,
.timeline-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 16px 0 10px;
}
.value-card p,
.timeline-item p {
  color: var(--muted);
  margin: 0;
}
.quote-section blockquote {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -2.5px;
  font-weight: 500;
  margin: 0;
  max-width: 960px;
}
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 70px;
}
.filter {
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.filter.active,
.filter:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.catalog-item.hide {
  display: none;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.timeline-item {
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.accordion {
  border-top: 1px solid var(--line);
  margin-top: 32px;
}
.accordion button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}
.accordion div {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.accordion div p {
  padding: 0 0 20px;
  margin: 0;
}
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.recipe-card {
  border: 1px solid var(--line);
  padding: 0 0 28px;
  background: #fff;
  overflow: hidden;
}
.recipe-img {
  height: 320px;
  overflow: hidden;
}
.recipe-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.7s;
}
.recipe-card:hover img {
  transform: scale(1.06);
}
.recipe-card span,
.recipe-card h3,
.recipe-card p {
  margin-left: 24px;
  margin-right: 24px;
}
.recipe-card span {
  display: block;
  margin-top: 24px;
}
.recipe-card h3 {
  font-size: 24px;
  line-height: 1.14;
  font-weight: 600;
  margin-top: 10px;
}
.recipe-card p {
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
}
.contact-card {
  background: var(--red);
  color: #fff;
  padding: 42px;
}
.contact-card h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 24px;
}
.contact-card p {
  color: rgba(255, 255, 255, 0.78);
}
.contact-card img {
  margin-top: 30px;
  height: 260px;
  width: 100%;
  object-fit: cover;
}
.copy-line {
  display: block;
  background: transparent;
  border: 0;
  color: inherit;
  padding: 8px 0;
  text-align: left;
  cursor: pointer;
}
.light-copy {
  font-weight: 600;
  font-size: 18px;
}
.copy-line.copied {
  color: var(--red);
}
.contact-form {
  border: 1px solid var(--line);
  padding: 42px;
  background: #fff;
}
.contact-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  padding: 16px;
  margin-top: 8px;
  outline: none;
  background: #fff;
}
.contact-form textarea {
  height: 150px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--red);
}
.form-note {
  font-size: 12px;
  color: var(--muted);
}
.site-footer {
  background: var(--red);
  color: #fff;
  padding: 82px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 90px;
}
.brand-footer {
  margin-bottom: 24px;
}
.mark-light {
  background: #fff;
}
.footer-grid p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 340px;
}
.footer-grid h4 {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-grid a {
  display: block;
  margin: 12px 0;
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  margin-top: 60px;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal {
  transform: translateY(34px);
}
.reveal-left {
  transform: translateX(-36px);
}
.reveal-right {
  transform: translateX(36px);
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.24s;
}
.delay-3 {
  transition-delay: 0.36s;
}
