:root {
  --forest: #1f3a1e;
  --forest-deep: #102312;
  --leaf: #5f7f30;
  --berry: #e36d1f;
  --berry-dark: #b94712;
  --gold: #c8983e;
  --cream: #fff7e8;
  --sand: #f4e2bf;
  --ink: #1b1b14;
  --muted: #6b6254;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(52, 32, 8, 0.16);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(95, 127, 48, 0.09), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(227, 109, 31, 0.08), transparent 30%),
    linear-gradient(180deg, #fffaf0 0%, #fff3dc 48%, #fffaf0 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(ellipse 34px 92px at 10% 18%, rgba(95, 127, 48, 0.16) 0 38%, transparent 40%),
    radial-gradient(ellipse 30px 82px at 17% 28%, rgba(95, 127, 48, 0.12) 0 38%, transparent 40%),
    radial-gradient(ellipse 36px 96px at 84% 22%, rgba(95, 127, 48, 0.13) 0 38%, transparent 40%),
    radial-gradient(ellipse 28px 78px at 91% 34%, rgba(95, 127, 48, 0.1) 0 38%, transparent 40%),
    radial-gradient(circle at 13% 58%, rgba(227, 109, 31, 0.13) 0 8px, transparent 9px),
    radial-gradient(circle at 88% 58%, rgba(227, 109, 31, 0.12) 0 7px, transparent 8px);
  background-size: 520px 380px, 520px 380px, 620px 440px, 620px 440px, 360px 260px, 420px 300px;
  background-position: 0 0, 26px 18px, right 22px top 20px, right 0 top 54px, 40px 120px, right 70px top 150px;
  background-repeat: repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 47%, rgba(95, 127, 48, 0.055) 48% 49%, transparent 50% 100%) 0 0 / 260px 180px,
    linear-gradient(65deg, transparent 0 48%, rgba(200, 152, 62, 0.055) 49% 50%, transparent 51% 100%) 0 0 / 320px 220px,
    radial-gradient(ellipse at 18% 72%, rgba(95, 127, 48, 0.065), transparent 26%),
    radial-gradient(ellipse at 76% 68%, rgba(200, 152, 62, 0.065), transparent 28%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 234, 0.92);
  border-bottom: 1px solid rgba(200, 152, 62, 0.2);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 282px;
}

.brand-mark {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff8e8;
  border: 2px solid rgba(200, 152, 62, 0.52);
  box-shadow: 0 10px 26px rgba(31, 58, 30, 0.24);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong {
  display: block;
  font-family: "Cinzel", Georgia, serif;
  color: var(--forest-deep);
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.brand small {
  display: block;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #473b2b;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--berry);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31, 58, 30, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--forest);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--cream);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.96), rgba(255, 248, 234, 0.75)),
    url("assets/brand-hero.png") center/cover no-repeat;
  opacity: 0.82;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.42;
}

.hero::before {
  width: 420px;
  height: 420px;
  right: -140px;
  top: 80px;
  background: radial-gradient(circle, rgba(227, 109, 31, 0.32), transparent 68%);
}

.hero::after {
  width: 360px;
  height: 360px;
  left: -140px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(95, 127, 48, 0.24), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--berry-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cinzel", Georgia, serif;
  color: var(--forest-deep);
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  color: var(--forest-deep);
  font-size: 22px;
}

.hero-copy p,
.section-copy p,
.section-heading p,
.product-panel p,
.contact-info p,
.order-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-copy p {
  max-width: 690px;
}

.hero-actions,
.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--berry), var(--berry-dark));
  box-shadow: 0 16px 32px rgba(179, 71, 18, 0.26);
}

.btn-secondary,
.btn-outline {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(31, 58, 30, 0.18);
}

.btn-outline {
  background: transparent;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 36px;
}

.trust-row div {
  padding: 18px 16px;
  border: 1px solid rgba(200, 152, 62, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(52, 32, 8, 0.08);
}

.trust-row strong {
  display: block;
  color: var(--forest);
  font-family: "Cinzel", Georgia, serif;
  font-size: 28px;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(200, 152, 62, 0.28);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card img {
  width: 100%;
  border-radius: 28px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  right: 8px;
  bottom: 38px;
  min-width: 160px;
  padding: 16px 18px;
  color: var(--cream);
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px 0 0 20px;
  box-shadow: 0 14px 34px rgba(16, 35, 18, 0.28);
}

.floating-badge span {
  display: block;
  color: #ffd289;
  font-weight: 800;
}

.brand-strip {
  padding: 28px 0;
  background: var(--forest-deep);
}

.brand-strip img {
  width: 100%;
  max-height: 260px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 56px;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  color: #3c3428;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(200, 152, 62, 0.18);
  border-radius: var(--radius-sm);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 19px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 36%, #ffc568, var(--berry));
}

.product-panel {
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(16, 35, 18, 0.92), rgba(31, 58, 30, 0.9)),
    url("assets/brand-hero.png") center/cover no-repeat;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.product-panel h3 {
  color: var(--cream);
  font-family: "Cinzel", Georgia, serif;
  font-size: 34px;
}

.product-panel p {
  color: rgba(255, 247, 232, 0.84);
}

.panel-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffd289;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.notice {
  margin-top: 24px;
  padding: 18px;
  color: rgba(255, 247, 232, 0.88);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  line-height: 1.7;
}

.benefits-section {
  background:
    radial-gradient(circle at top left, rgba(227, 109, 31, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(244, 226, 191, 0.36));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card {
  min-height: 270px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(200, 152, 62, 0.18);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(52, 32, 8, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(52, 32, 8, 0.14);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  color: var(--cream);
  background: var(--berry);
  border-radius: 16px;
  font-weight: 900;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.7;
}

.usage-section {
  padding-top: 30px;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(244, 226, 191, 0.44));
}

.usage-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(200, 152, 62, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 232, 0.82)),
    url("assets/brand-hero.png") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.usage-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.usage-grid div {
  min-height: 160px;
  padding: 22px;
  border: 1px solid rgba(31, 58, 30, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(52, 32, 8, 0.08);
}

.usage-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 18px;
}

.usage-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.quality-section {
  background: var(--forest-deep);
}

.quality-section h2,
.quality-section h3 {
  color: var(--cream);
}

.quality-section .section-copy p {
  color: rgba(255, 247, 232, 0.75);
}

.quality-image {
  padding: 18px;
  border: 1px solid rgba(255, 210, 137, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.quality-image img {
  border-radius: 24px;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.timeline div {
  position: relative;
  padding-left: 34px;
}

.timeline div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(200, 152, 62, 0.12);
}

.timeline strong {
  display: block;
  color: #ffd289;
  margin-bottom: 6px;
}

.timeline span {
  color: rgba(255, 247, 232, 0.74);
  line-height: 1.6;
}

.order-section {
  padding: 70px 0;
}

.order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(227, 109, 31, 0.95), rgba(179, 71, 18, 0.9)),
    url("assets/brand-hero.png") center/cover no-repeat;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.order-card h2,
.order-card p,
.order-card .eyebrow {
  color: var(--cream);
}

.order-card .eyebrow::before {
  background: var(--cream);
}

.order-card p {
  margin-bottom: 0;
  opacity: 0.9;
}

.order-card .btn-outline {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.55);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: 50px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list a {
  padding: 18px;
  border: 1px solid rgba(200, 152, 62, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-list a:hover {
  transform: translateX(4px);
  border-color: rgba(227, 109, 31, 0.5);
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
}

.contact-list span {
  color: var(--muted);
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(200, 152, 62, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--forest-deep);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
  border: 1px solid rgba(31, 58, 30, 0.16);
  border-radius: 14px;
  background: #fffaf0;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--berry);
  box-shadow: 0 0 0 4px rgba(227, 109, 31, 0.12);
}

.form-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: linear-gradient(135deg, #28d366, #128c4a);
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(29, 168, 81, 0.36);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(40, 211, 102, 0.5);
  border-radius: 50%;
  animation: whatsappPulse 1.8s ease-out infinite;
}

.whatsapp-float.is-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 44px rgba(29, 168, 81, 0.44);
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 40px rgba(29, 168, 81, 0.4);
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.whatsapp-tooltip {
  position: absolute;
  right: 62px;
  bottom: 5px;
  width: max-content;
  max-width: 230px;
  padding: 12px 16px;
  color: var(--forest-deep);
  background: var(--white);
  border: 1px solid rgba(31, 58, 30, 0.12);
  border-radius: 16px 16px 4px 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 14px 34px rgba(16, 35, 18, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 15px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border-right: 1px solid rgba(31, 58, 30, 0.12);
  border-bottom: 1px solid rgba(31, 58, 30, 0.12);
  transform: rotate(-45deg);
}

.whatsapp-float.is-visible .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.78;
    transform: scale(0.88);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.footer {
  padding: 28px 0;
  color: rgba(255, 247, 232, 0.74);
  background: #0b180c;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: var(--white);
    border: 1px solid rgba(200, 152, 62, 0.2);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-links a::after {
    display: none;
  }

  .hero-grid,
  .two-column,
  .two-column.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .usage-card {
    grid-template-columns: 1fr;
  }

  .order-card,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 64px 0;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy p,
  .section-copy p,
  .section-heading p,
  .product-panel p,
  .contact-info p,
  .order-card p {
    font-size: 16px;
  }

  .hero-actions,
  .order-actions,
  .btn {
    width: 100%;
  }

  .trust-row,
  .cards-grid,
  .usage-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .product-panel,
  .contact-form,
  .order-card,
  .usage-card {
    padding: 22px;
    border-radius: 24px;
  }

  .floating-badge {
    position: static;
    margin-top: 14px;
    border-radius: 18px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}
