﻿@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,500;1,600&display=swap");

:root {
  --red: #980f12;
  --red-dark: #71090c;
  --ink: #191716;
  --muted: #6f6964;
  --warm: #f6f3ee;
  --line: #ded9d1;
  --white: #fff;
  --container: 1200px;
  --radius: 4px;
  --shadow: 0 24px 70px rgba(48, 25, 15, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  touch-action: manipulation;
}
img {
  max-width: 100%;
}
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: auto;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  background: #fff;
  padding: 12px 18px;
  border: 2px solid var(--red);
}
.skip-link:focus {
  top: 16px;
}
.header {
  height: 124px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(25, 23, 22, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 340px;
  height: 114px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}
.nav > a:not(.button) {
  position: relative;
}
.nav > a:not(.button):after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--red);
  transition: right 0.25s;
}
.nav > a:hover:after {
  right: 0;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  padding: 0 24px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--red);
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(152, 15, 18, 0.2);
}
.button-small {
  min-height: 45px;
  padding: 0 19px;
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}
.hero {
  min-height: 740px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 46%,
    rgba(255, 255, 255, 0.1) 68%
  );
}
.hero-image {
  position: absolute;
  inset: 0 0 0 38%;
  background: url("./hero-packaging-v3.webp") center right/cover no-repeat;
  z-index: -1;
}
.hero-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0.94) 10%,
    rgba(255, 255, 255, 0.25) 43%,
    transparent 65%
  );
}
.hero-grid {
  min-height: 740px;
  display: grid;
  align-items: center;
  grid-template-columns: 54% 46%;
}
.hero-copy {
  padding: 64px 0;
  max-width: 680px;
}
.eyebrow,
.section-index {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 11px;
}
.eyebrow > span {
  width: 34px;
  height: 1px;
  background: var(--red);
}
h1,
h2 {
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 26px 0;
}
h1 {
  font-size: clamp(54px, 6vw, 84px);
}
h1 em,
h2 em {
  font-family: "Playfair Display", serif;
  color: var(--red);
  font-weight: 500;
}
.hero-copy > p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 575px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 34px;
}
.hero-actions .button {
  width: 238px;
}
.text-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 14px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 58px;
}
.trust-row div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-row strong {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}
.trust-row strong svg {
  color: #d59b24;
}
.trust-row span {
  font-size: 11px;
  color: var(--muted);
}
.trust-row i {
  height: 34px;
  width: 1px;
  background: var(--line);
}
.statement {
  padding: 110px 0 65px;
}
.statement-grid {
  display: grid;
  grid-template-columns: 27% 73%;
  align-items: start;
}
.section-index span {
  color: #b9b1aa;
}
.statement h2,
.section-head h2 {
  font-size: clamp(42px, 5vw, 68px);
  margin: 0 0 22px;
}
.statement p {
  font-size: 17px;
  color: var(--muted);
  max-width: 630px;
  line-height: 1.7;
}
.products {
  padding-bottom: 120px;
}
.catalog {
  display: grid;
  gap: 96px;
}
.catalog-group {
  scroll-margin-top: 110px;
}
.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.catalog-heading h3 {
  margin: 5px 0 0;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.035em;
}
.catalog-count {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}
.product-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  background: #fff;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  z-index: 2;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--red);
}
.card-top span {
  font-size: 12px;
  font-weight: 700;
}
.product-visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--warm);
}
.product-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .product-visual img {
  transform: scale(1.035);
}
.product-visual > span {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
}
.tag {
  display: inline-block;
  text-transform: uppercase;
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.product-content {
  padding: 23px 24px 25px;
}
.product-content h4 {
  margin: 0;
  font-size: 19px;
  line-height: 1.3;
  min-height: 50px;
}
.product-content > a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
}
.difference {
  background: var(--red);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.difference:after {
  content: "C";
  position: absolute;
  right: -6%;
  bottom: -46%;
  font-family: serif;
  font-size: 620px;
  color: rgba(255, 255, 255, 0.035);
  line-height: 1;
}
.difference-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 70px;
}
.section-index.light {
  color: #fff;
}
.section-index.light span {
  color: rgba(255, 255, 255, 0.45);
}
.difference h2,
.reviews h2 {
  font-size: clamp(45px, 5vw, 68px);
}
.difference h2 em,
.reviews h2 em {
  color: #fff;
}
.difference-copy > p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.74);
  max-width: 500px;
  margin-bottom: 34px;
}
.button-white {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}
.button-white:hover {
  background: var(--warm);
  color: var(--red-dark);
}
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.features > div {
  padding: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.features svg {
  margin-bottom: 28px;
}
.features h3 {
  font-size: 17px;
  margin: 0 0 9px;
}
.features p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
  margin: 0;
}
.process {
  padding: 120px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.section-head h2 {
  width: 72%;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 55px;
}
.step {
  padding-right: 34px;
}
.step b {
  color: var(--red);
  font-size: 11px;
}
.step > span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 20px 0 28px;
  position: relative;
}
.step > span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
}
.step h3 {
  font-size: 20px;
}
.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.story {
  background: var(--warm);
  padding: 120px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 9%;
}
.story-art {
  min-height: 550px;
  background: #e7dfd3;
  position: relative;
  overflow: hidden;
}
.story-art:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 20px,
    rgba(113, 81, 44, 0.025) 21px,
    rgba(113, 81, 44, 0.025) 22px
  );
}
.year {
  position: absolute;
  z-index: 2;
  top: 58px;
  left: 58px;
  font-size: 90px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: -0.08em;
}
.year small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  margin-left: 8px;
}
.paper {
  position: absolute;
  background: #c89d65;
  box-shadow: 0 30px 40px rgba(56, 38, 20, 0.2);
}
.paper-one {
  width: 300px;
  height: 220px;
  bottom: 70px;
  right: -20px;
  transform: rotate(-8deg) skewY(-5deg);
}
.paper-two {
  width: 220px;
  height: 280px;
  bottom: -80px;
  left: 50px;
  transform: rotate(15deg);
  background: #f8f5ef;
  border: 1px solid #d8d0c5;
}
.story-copy {
  padding-top: 15px;
}
.story-copy h2 {
  font-size: clamp(44px, 5vw, 65px);
}
.story-copy > p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}
.story-proof {
  display: flex;
  gap: 18px;
  border-top: 1px solid var(--line);
  margin-top: 35px;
  padding-top: 28px;
}
.story-proof svg {
  color: var(--red);
  flex: none;
}
.story-proof div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.story-proof span {
  font-size: 13px;
  color: var(--muted);
}
.reviews {
  background: #1b1817;
  color: #fff;
  padding: 120px 0;
}
.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.reviews h2 {
  margin-bottom: 0;
}
.google-score {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 10px;
}
.google-score > strong {
  font-size: 54px;
}
.google-score > span {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: #aaa;
}
.stars {
  color: #e5a82e;
  letter-spacing: 2px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
blockquote {
  margin: 0;
  padding: 36px 40px 10px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
blockquote + blockquote {
  padding-left: 40px;
}
.review-grid blockquote:last-child {
  border: 0;
}
.review-grid blockquote p {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 25px;
  line-height: 1.45;
  min-height: 110px;
}
.review-grid footer {
  font-size: 13px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.review-grid footer span {
  font-size: 11px;
  font-weight: 400;
  color: #888;
}
.cta {
  background: var(--red);
  color: #fff;
  padding: 75px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.cta-inner > div > span {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.17em;
  font-weight: 700;
}
.cta h2 {
  font-size: clamp(34px, 4vw, 53px);
  margin: 15px 0 0;
}
.button-dark {
  background: #1b1817;
  border-color: #1b1817;
  white-space: nowrap;
}
.button-dark:hover {
  background: #000;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.button-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
}
.button-outline-white:hover {
  background: #fff;
  color: var(--red);
}
.footer {
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
}
.footer-brand img {
  width: 210px;
  height: 95px;
  object-fit: contain;
}
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 330px;
}
.footer h3 {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--red);
  margin-bottom: 22px;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer-grid a {
  font-size: 13px;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.footer-grid a svg {
  width: 16px;
  color: var(--red);
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 55px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: #8b857f;
  font-size: 11px;
}
.floating-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.floating-wa {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #198754;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  cursor: pointer;
}
.floating-wa:hover {
  transform: scale(1.06);
}
.floating-wa:focus-visible,
.floating-chat-panel button:focus-visible,
.floating-chat-panel a:focus-visible {
  outline: 3px solid rgba(25, 135, 84, 0.35);
  outline-offset: 3px;
}
.floating-chat-panel {
  width: min(350px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(22, 17, 15, 0.24);
  animation: chat-in 0.22s ease-out;
}
.floating-chat-head {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  background: #198754;
}
.floating-chat-head div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.floating-chat-head span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.78;
}
.floating-chat-head strong {
  font-size: 15px;
}
.floating-chat-head button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}
.floating-chat-panel > p {
  margin: 0;
  padding: 18px 20px 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.floating-chat-panel > a {
  margin: 8px 14px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 11px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.floating-chat-panel > a:hover {
  border-color: rgba(25, 135, 84, 0.48);
  background: #f4faf6;
  transform: translateX(2px);
}
.floating-chat-panel > a > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.floating-chat-panel > a strong {
  font-size: 13px;
}
.floating-chat-panel > a small {
  color: var(--muted);
  font-size: 11px;
}
.chat-option-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #198754;
  background: #eaf6ee;
}
.chat-status {
  padding: 8px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
}
.chat-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #198754;
}
@keyframes chat-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 980px) {
  .nav {
    position: absolute;
    top: 124px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    display: none;
  }
  .nav.open {
    display: flex;
  }
  .menu-button {
    display: flex;
  }
  .hero {
    min-height: 780px;
  }
  .hero-image {
    inset: 38% 0 0 20%;
    opacity: 0.52;
  }
  .hero-image:after {
    background: linear-gradient(
      180deg,
      #fff 0%,
      rgba(255, 255, 255, 0.2) 35%,
      transparent
    );
  }
  .hero-grid {
    min-height: 780px;
    grid-template-columns: 1fr;
    align-items: start;
  }
  .hero-copy {
    padding-top: 95px;
  }
  .statement-grid,
  .difference-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }
  .statement-grid {
    gap: 35px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .difference-grid {
    gap: 60px;
  }
  .section-head {
    display: block;
  }
  .section-head h2 {
    width: 100%;
    margin-top: 30px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 35px 0;
  }
  .story-grid {
    gap: 60px;
  }
  .story-art {
    min-height: 420px;
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .cta-actions {
    justify-content: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, var(--container));
  }
  .header {
    height: 102px;
  }
  .brand img {
    width: 235px;
    height: 90px;
  }
  .nav {
    top: 102px;
  }
  .hero,
  .hero-grid {
    min-height: 760px;
  }
  .hero-copy {
    padding-top: 70px;
  }
  h1 {
    font-size: 49px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-actions {
    align-items: stretch;
    gap: 20px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-actions .text-link {
    justify-content: center;
  }
  .trust-row {
    gap: 14px;
    margin-top: 38px;
    justify-content: space-between;
  }
  .trust-row i {
    display: none;
  }
  .trust-row strong {
    font-size: 12px;
  }
  .trust-row span {
    font-size: 9px;
  }
  .hero-image {
    inset: 52% -50% 0 -15%;
    opacity: 0.7;
  }
  .statement,
  .difference,
  .process,
  .story,
  .reviews {
    padding: 84px 0;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .catalog {
    gap: 70px;
  }
  .catalog-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .product-card p {
    min-height: auto;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .features > div {
    padding: 28px 10px;
    border-left: 0;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .section-head h2,
  .statement h2 {
    font-size: 43px;
  }
  .story-art {
    min-height: 360px;
  }
  .year {
    top: 38px;
    left: 26px;
    font-size: 70px;
  }
  .paper-one {
    width: 230px;
  }
  .reviews-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
  }
  .review-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }
  .review-grid blockquote,
  blockquote + blockquote {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .review-grid blockquote p {
    min-height: auto;
  }
  .cta {
    padding: 60px 0;
  }
  .button-dark {
    white-space: normal;
  }
  .cta-actions {
    width: 100%;
  }
  .cta-actions .button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .floating-chat {
    right: 16px;
    bottom: 16px;
  }
  .floating-wa {
    width: 54px;
    height: 54px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}

