:root {
  --accent: #aa8145;
  --accent-dark: #aa7045;
  --text: #222;
  --muted: #666;
  --heading: #aa8145;
  --nav-active: #96794f;
  --light: #f5f5f5;
  --line: #ebebeb;
  --white: #fff;
  --footer: #f7f7f7;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --container: min(1170px, calc(100% - 30px));
  --font-body: "Rubik", sans-serif;
  --font-hero: "Libre Baskerville", serif;
  --font-heading: "Conv_Acherus-Grotesque-Regular", "Rubik", sans-serif;
}

@font-face {
  font-family: "Conv_Acherus-Grotesque-Regular";
  src: url("../fonts/Acherus-Grotesque-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--muted);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 24px;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 9px 14px;
  color: var(--white);
  background: var(--accent);
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 180ms ease;
}

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

.nav-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 86px;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  width: 240px;
  align-items: center;
}

.brand img {
  width: 240px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

.site-nav a {
  color: var(--text);
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a:first-child {
  color: var(--nav-active);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

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

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.btn {
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.btn-primary {
  color: var(--white);
  background: var(--accent);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
}

.btn-secondary {
  color: var(--text);
  border: 2px solid var(--line);
  background: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: #eee;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: relative;
  z-index: 1;
  padding: 80px 0 110px;
}

.slide-caption h1 {
  max-width: 660px;
  margin: 0;
  color: var(--heading);
  font-size: clamp(38px, 5.625vw, 72px);
  font-family: var(--font-hero);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.slide-caption p {
  max-width: 510px;
  margin: 24px 0 32px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.slide-dots {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slide-dots button {
  width: 12px;
  height: 12px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.slide-dots button.is-active {
  background: var(--accent);
}

.trust-section {
  padding: 66px 0 58px;
  text-align: center;
}

.trust-inner {
  max-width: 760px;
}

.trust-section h2,
.section-title h2,
.about-copy h2,
.delivery-copy h2,
.info-copy h2,
.redirect-inner h2 {
  margin: 0;
  color: var(--heading);
  font-family: var(--font-hero);
  font-size: clamp(27px, 3.4vw, 30px);
  font-weight: 400;
  line-height: 1.1;
}

.trust-section p,
.about-copy p,
.delivery-copy p,
.info-copy p,
.redirect-inner p {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.trust-section p {
  margin: 18px auto 26px;
  max-width: 680px;
}

.section {
  padding: 72px 0;
}

.section-title {
  margin-bottom: 36px;
  text-align: center;
}

.section-title span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.best-selling,
.preserved {
  border-top: 1px solid var(--line);
}

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

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

.product-card {
  position: relative;
  min-width: 0;
  text-align: center;
}

.product-card a {
  display: block;
  text-decoration: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 370 / 481;
  object-fit: cover;
  background: #f7f7f7;
  transition: opacity 180ms ease, transform 220ms ease;
}

.product-card:hover img {
  opacity: 0.88;
  transform: translateY(-3px);
}

.product-card h3 {
  min-height: 42px;
  margin: 18px 0 8px;
  color: var(--text);
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-transform: capitalize;
  transition: color 180ms ease;
}

.product-card a:hover h3,
.product-card a:focus-visible h3 {
  color: var(--accent);
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  min-width: 44px;
  padding: 4px 8px;
  color: var(--white);
  background: var(--accent);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.categories {
  background: var(--light);
}

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

.category-tile {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 210px;
  background: #ddd;
  color: var(--white);
  text-decoration: none;
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.category-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.56));
}

.category-tile span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 400;
}

.category-tile:hover img,
.category-tile:focus-visible img {
  transform: scale(1.045);
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  align-items: center;
  gap: 60px;
}

.about-logo {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px solid var(--line);
  background: #fafafa;
}

.about-logo img {
  width: min(440px, 82%);
}

.about-copy p {
  margin: 18px 0 0;
}

.delivery {
  background: var(--light);
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(340px, 1.04fr);
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
}

.delivery-grid > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 74% center;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.delivery-copy p {
  margin: 18px 0 0;
}

.delivery-copy .btn {
  margin-top: 24px;
}

.payment-info {
  background: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
}

.molder-image {
  display: grid;
  min-height: 390px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffaf0, #fff 78%);
  padding: clamp(18px, 4vw, 40px);
}

.molder-image img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.info-copy h3 {
  margin: 30px 0 10px;
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.payment-logos img {
  width: 70px;
  height: 44px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--white);
}

.official-redirect {
  padding: 70px 0;
  color: var(--white);
  background: #222;
  text-align: center;
}

.redirect-inner {
  max-width: 800px;
}

.redirect-inner h2,
.redirect-inner p {
  color: var(--white);
}

.redirect-inner p {
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  color: var(--muted);
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  align-items: start;
  max-width: 880px;
  gap: clamp(42px, 9vw, 110px);
  padding: 62px 0 54px;
}

.footer-grid .footer-col {
  max-width: 360px;
}

.footer-col h3 {
  margin: 0 0 18px;
  color: var(--heading);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 15.4px;
  text-transform: uppercase;
}

.footer-col p {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: var(--font-body);
  line-height: 24px;
}

.footer-col a {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-family: var(--font-body);
  line-height: 24px;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--accent);
}

.footer-social {
  justify-self: center;
  text-align: center;
}

.footer-social img {
  width: 260px;
  margin: 0 auto 18px;
}

.footer-social p {
  margin: 0 0 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--white);
  background: var(--accent);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-copyright {
  border-top: 1px solid #ddd;
  background: var(--white);
}

.footer-copyright .container {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.footer-copyright a {
  color: var(--muted);
  text-decoration: none;
}

.footer-copyright a:hover,
.footer-copyright a:focus-visible {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 12px;
  }

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

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

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .brand,
  .brand img {
    width: 220px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 15px;
    left: 15px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px 0;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 18px;
  }

  .hero-slider {
    min-height: 520px;
  }

  .slide-caption {
    padding: 64px 0 90px;
  }

  .category-grid,
  .about-grid,
  .delivery-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .delivery-grid > img {
    max-height: 560px;
  }

  .molder-image {
    min-height: 0;
    padding: 26px;
  }

  .molder-image img {
    max-height: 320px;
  }

  .category-tile,
  .category-tile img {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 24px, 1170px);
  }

  body {
    font-size: 13px;
  }

  .brand,
  .brand img {
    width: 190px;
  }

  .hero-slider {
    min-height: 480px;
  }

  .hero-slide img {
    object-position: 62% center;
  }

  .hero-slide::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7) 56%, rgba(255, 255, 255, 0.12));
  }

  .slide-caption {
    z-index: 2;
  }

  .slide-caption h1 {
    max-width: 330px;
    font-size: 32px;
  }

  .slide-caption p {
    max-width: 300px;
    font-size: 14px;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 54px 0;
  }

  .product-grid,
  .product-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 16px;
  }

  .product-card h3 {
    min-height: 60px;
    font-size: 13px;
  }

  .delivery-grid > img {
    max-height: none;
  }

  .molder-image {
    padding: 22px 18px;
  }

  .molder-image img {
    max-height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 44px 0;
    gap: 34px;
    text-align: center;
  }

  .footer-grid .footer-col,
  .footer-social {
    justify-self: center;
  }

  .footer-copyright .container {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
    gap: 4px;
  }
}

@media (max-width: 420px) {
  .product-grid,
  .product-grid.compact {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
