:root {
  --gold: #c78a31;
  --gold-dark: #a85a10;
  --cream: #faf7f2;
  --paper: #ffffff;
  --ink: #2e241c;
  --muted: #756b62;
  --line: #ece3da;
  --soft: #f4eee7;
  --shadow: 0 18px 46px rgba(67, 42, 23, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Jost", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.top-strip {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 8px 20px;
  color: #fff;
  background: #b76514;
  font-size: 13px;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Marcellus", Georgia, serif;
  font-size: 23px;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(15px, 2vw, 30px);
  color: #3d332b;
  font-size: 15px;
  font-weight: 500;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--gold-dark);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(67, 42, 23, 0.16);
}

.header-call {
  color: #fff;
  border: 1px solid #b66d20;
  background: linear-gradient(135deg, #d99a43, #a85a10);
}

.header-call:hover {
  color: #fff;
  background: linear-gradient(135deg, #e6ac5c, #a85a10);
}

.header-whatsapp {
  color: #fff;
  border: 1px solid #1fb757;
  background: linear-gradient(135deg, #36d879, #128c45);
}

.header-whatsapp:hover {
  color: #fff;
  background: linear-gradient(135deg, #44e386, #128c45);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.hero-slider,
.purpose-section,
.whats-new-section,
.product-section,
.story-section,
.assurance-section,
.contact-section,
.site-footer {
  padding-right: clamp(18px, 5vw, 72px);
  padding-left: clamp(18px, 5vw, 72px);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 70vh, 720px);
  padding-top: 0;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 78% 48%, rgba(199, 138, 49, 0.2), transparent 24rem),
    linear-gradient(90deg, #2a1d14 0%, #4a3322 55%, #f4eee7 55%, #f4eee7 100%);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 110px) clamp(18px, 5vw, 72px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s ease;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(31, 23, 18, 0.86) 0%, rgba(31, 23, 18, 0.66) 42%, rgba(31, 23, 18, 0.08) 72%, rgba(31, 23, 18, 0) 100%),
    radial-gradient(circle at 66% 44%, rgba(255, 213, 111, 0.16), transparent 24rem);
}

.slide img {
  position: absolute;
  top: 0;
  right: clamp(18px, 5vw, 72px);
  bottom: 0;
  width: min(46vw, 700px);
  height: 100%;
  object-fit: contain;
  object-position: center right;
  transform: scale(0.96);
  filter: drop-shadow(0 28px 46px rgba(31, 23, 18, 0.24));
}

.slide.active img {
  animation: sliderFloat 7s ease forwards;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.slide-content h1,
.slide-content h2 {
  color: #fff;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.slide-content h2 {
  font-size: clamp(34px, 4.3vw, 62px);
  line-height: 1.08;
}

.slide-content h1 {
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.06;
}

.slide-content p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.slide-content .secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.slider-arrow,
.slider-dots button {
  position: relative;
  z-index: 4;
  cursor: pointer;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.slider-arrow:hover {
  background: var(--gold-dark);
}

.slider-arrow.prev {
  left: 24px;
}

.slider-arrow.next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}

.slider-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Marcellus", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1.02;
}

h2 {
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.12;
}

h3 {
  font-size: 20px;
  line-height: 1.3;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.primary {
  color: #fff;
  background: var(--gold-dark);
}

.btn.secondary {
  color: var(--ink);
  border-color: #d8c7b6;
  background: #fff;
}

.purpose-section,
.whats-new-section,
.product-section,
.story-section,
.assurance-section,
.contact-section {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
}

.whats-new-section {
  background: #f7f1ef;
}

.whats-new-section > h2 {
  margin-bottom: 36px;
  text-align: center;
  font-size: clamp(34px, 4vw, 54px);
}

.whats-new-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 22px;
  align-items: stretch;
}

.new-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 8px;
  background: #2d2119;
  box-shadow: 0 16px 42px rgba(67, 42, 23, 0.12);
}

.new-card.wide {
  grid-column: span 2;
}

.new-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.new-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 23, 18, 0.5), rgba(31, 23, 18, 0.18) 45%, rgba(31, 23, 18, 0.58)),
    radial-gradient(circle at 74% 45%, rgba(222, 171, 69, 0.26), transparent 18rem);
}

.new-card span {
  position: absolute;
  top: 32px;
  left: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  gap: 4px;
  text-align: center;
}

.new-card strong {
  color: #ffd56f;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.05;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.new-card em {
  color: #fff;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.new-card:hover img {
  transform: scale(1.06);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.purpose-card {
  display: grid;
  min-height: 132px;
  place-items: center;
  gap: 12px;
  padding: 22px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.purpose-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.purpose-card i {
  color: var(--gold-dark);
  font-size: 28px;
}

.purpose-card span {
  font-weight: 600;
}

.product-section {
  background: #fff;
}

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

.product-card {
  min-width: 0;
}

.product-image {
  position: relative;
  overflow: hidden;
  background: var(--soft);
  border-radius: 2px;
}

.product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.discount {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  min-width: 54px;
  padding: 7px 12px;
  color: #fff;
  background: #b84d05;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.product-info {
  padding-top: 16px;
}

.product-info p {
  margin: 0 0 8px;
  color: #9a8e84;
  font-size: 13px;
}

.product-info h3 {
  min-height: 54px;
  margin-bottom: 12px;
  font-family: "Jost", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.product-info strong {
  margin-right: 9px;
  color: var(--gold-dark);
  font-size: 16px;
}

.product-info del {
  color: #9a8e84;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.story-image img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.story-copy li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-weight: 600;
}

.story-copy i {
  color: var(--gold-dark);
}

.assurance-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: #fff;
}

.assurance-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.assurance-card i {
  color: var(--gold-dark);
  font-size: 30px;
}

.assurance-card h3 {
  margin-top: 16px;
  font-family: "Jost", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.assurance-card p {
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--soft);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ded1c5;
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 34px;
  padding-top: 56px;
  padding-bottom: 46px;
  color: rgba(255, 255, 255, 0.76);
  background: #2d2119;
}

.site-footer .brand,
.site-footer h3 {
  color: #fff;
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a {
  margin-top: 9px;
}

.footer-brand {
  margin-bottom: 16px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-size: 27px;
}

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

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

@keyframes sliderZoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.1); }
}

@keyframes sliderFloat {
  from { transform: scale(0.94) translateX(14px); }
  to { transform: scale(0.98) translateX(0); }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .header-actions {
    justify-content: end;
    gap: 8px;
  }

  .header-actions a {
    padding: 10px 12px;
  }

  .purpose-grid,
  .product-grid,
  .assurance-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .whats-new-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .new-card.wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .top-strip {
    flex-direction: column;
    gap: 4px;
  }

  .story-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: auto;
    height: 680px;
  }

  .slide {
    align-items: end;
    padding-top: 72px;
    padding-bottom: 88px;
  }

  .slide::before {
    background: linear-gradient(180deg, rgba(31, 23, 18, 0.18), rgba(31, 23, 18, 0.86));
  }

  .slide img {
    right: 50%;
    width: 94vw;
    height: 58%;
    object-position: center;
    transform: translateX(50%) scale(0.95);
    opacity: 0.92;
  }

  .slide.active img {
    animation: none;
  }

  .slider-arrow {
    top: auto;
    bottom: 24px;
    transform: none;
  }

  .slider-arrow.prev {
    left: 18px;
  }

  .slider-arrow.next {
    right: 18px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header {
    gap: 12px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .header-actions a {
    flex: 1;
  }

  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .purpose-grid,
  .product-grid,
  .assurance-section,
  .whats-new-grid {
    grid-template-columns: 1fr;
  }

  .whats-new-grid {
    grid-auto-rows: 260px;
  }

}
