@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap");
:root {
  --ink: #10231f;
  --cream: #f5f0e7;
  --paper: #fbfaf6;
  --gold: #d69a2d;
  --leaf: #557a55;
  --text: #2d3935;
  --muted: #6d7772;
  --line: rgba(16, 35, 31, 0.12);
  --shadow: 0 24px 70px rgba(16, 35, 31, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
  font-family: "Playfair Display", serif;
}
a,
button {
  transition: all 0.25s ease;
}
.container {
  max-width: 1180px;
}
section {
  scroll-margin-top: 88px;
}
.top-bar {
  padding: 9px 0;
  background: var(--ink);
  color: #ffffffb8;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.top-bar a {
  margin-left: 24px;
  color: #ffffffbf;
  text-decoration: none;
}
.top-bar i {
  margin-right: 7px;
  color: var(--gold);
}
.top-bar a:hover {
  color: #fff;
}
.main-navbar {
  min-height: 84px;
  background: #fbfaf6f0 !important;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.site-logo {
  display: block;
  width: auto;
  height: 55px;
  object-fit: contain;
}
.navbar-brand {
  padding: 0;
}
.main-navbar .nav-link {
  position: relative;
  margin: 0 10px;
  padding: 29px 0 25px !important;
  color: var(--ink) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.main-navbar .nav-link:after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: 0.25s;
}
.main-navbar .nav-link:hover:after,
.main-navbar .nav-link.active:after {
  transform: scaleX(1);
}
.quote-btn {
  padding: 12px 19px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.quote-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-section:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% + 105px);
  width: 1px;
  background: #10231f17;
  content: "";
}
.hero-section:after {
  position: absolute;
  right: -180px;
  bottom: -300px;
  width: 650px;
  height: 650px;
  border: 1px solid #d69a2d3d;
  border-radius: 50%;
  content: "";
}
.min-vh-75 {
  min-height: 780px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 105px 0 100px;
}
.hero-label,
.section-heading > span,
.fragrance-label,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 21px;
  color: var(--leaf);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-label:before,
.section-heading > span:before,
.fragrance-label:before,
.section-tag:before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}
.hero-content h1 {
  max-width: 650px;
  margin: 0 0 25px;
  font-size: clamp(52px, 5.8vw, 78px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero-content h1 span {
  display: block;
  color: var(--gold);
  font-style: italic;
}
.hero-content > p:not(.hero-trust) {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-buttons .btn,
.fragrance-btn {
  padding: 15px 22px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
}
.hero-primary-btn {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
}
.hero-primary-btn i {
  margin-left: 12px;
}
.hero-primary-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}
.hero-secondary-btn {
  border: 1px solid #10231f59;
  color: var(--ink);
}
.hero-secondary-btn:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  margin-top: 31px;
}
.hero-feature {
  color: #53615c;
  font-size: 12px;
  font-weight: 600;
}
.hero-feature i {
  margin-right: 6px;
  color: var(--leaf);
}
.hero-trust {
  display: flex;
  gap: 28px;
  margin: 38px 0 0 !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 11px !important;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.hero-image-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 680px;
  align-items: center;
  justify-content: center;
}
.hero-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #e7ddcd;
}
.hero-circle:after {
  position: absolute;
  inset: 28px;
  border: 1px solid #10231f21;
  border-radius: 50%;
  content: "";
}
.hero-image {
  position: relative;
  z-index: 2;
  width: 61%;
  max-height: 570px;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px #10231f2e);
}
.hero-visual-note {
  position: absolute;
  top: 85px;
  right: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.delivery-badge {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 82px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  border: 1px solid #10231f14;
  background: #ffffffe6;
  box-shadow: 0 15px 40px #10231f1f;
  backdrop-filter: blur(8px);
}
.delivery-badge i {
  color: var(--gold);
  font-size: 23px;
}
.delivery-badge strong,
.delivery-badge span {
  display: block;
}
.delivery-badge strong {
  color: var(--ink);
  font:
    600 14px "Playfair Display",
    serif;
}
.delivery-badge span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-facts {
  position: relative;
  z-index: 3;
  background: var(--ink);
  color: #fff;
}
.fact-item {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 24px;
  border-right: 1px solid #ffffff1f;
}
.product-facts .col-lg-3:last-child .fact-item {
  border-right: 0;
}
.fact-icon {
  color: var(--gold);
  font-size: 25px;
}
.fact-item strong,
.fact-item span {
  display: block;
}
.fact-item strong {
  color: #fff;
  font:
    600 18px "Playfair Display",
    serif;
}
.fact-item span {
  margin-top: 4px;
  color: #ffffff8c;
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.section-heading {
  max-width: 750px;
  margin: 0 auto 52px;
}
.section-heading > span {
  justify-content: center;
}
.section-heading h2 {
  margin: 0 0 17px;
  font-size: clamp(38px, 4.6vw, 55px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.section-heading h2 strong {
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
}
.section-heading p {
  max-width: 630px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
}
.solutions-section,
.products-section,
.fragrances-section {
  padding: 110px 0;
}
.solutions-section {
  background: var(--paper);
}
.solution-card {
  position: relative;
  height: 100%;
  padding: 30px 25px 27px;
  border-top: 1px solid #10231f38;
  background: transparent;
  transition: 0.3s;
}
.solution-card:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}
.solution-card:hover {
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.solution-card:hover:after {
  transform: scaleX(1);
}
.solution-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid #d69a2d73;
  border-radius: 50%;
  color: var(--gold);
  font-size: 21px;
}
.solution-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}
.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.products-section {
  background: #e9e4da;
}
.product-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 0;
  background: #fff;
  transition: 0.35s;
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}
.product-tag {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 7px 11px;
  background: var(--ink);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.product-image-box {
  display: flex;
  height: 335px;
  align-items: center;
  justify-content: center;
  padding: 40px 30px 23px;
  background: #f4f1ea;
}
.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.45s;
}
.product-card:hover .product-image-box img {
  transform: scale(1.045);
}
.product-content {
  padding: 29px;
}
.product-content h3 {
  margin-bottom: 10px;
  font-size: 24px;
}
.product-content > p {
  min-height: 44px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.product-features {
  margin: 0 0 25px;
  padding: 20px 0 5px;
  border-top: 1px solid var(--line);
  list-style: none;
}
.product-features li {
  display: flex;
  margin-bottom: 10px;
  color: #58645f;
  font-size: 12px;
}
.product-features i {
  margin: 1px 9px 0 0;
  color: var(--leaf);
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.product-link:hover {
  gap: 14px;
  color: var(--gold);
}
.fragrances-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.fragrances-section:after {
  position: absolute;
  right: -230px;
  top: -270px;
  width: 650px;
  height: 650px;
  border: 1px solid #d69a2d26;
  border-radius: 50%;
  content: "";
}
.fragrance-label {
  color: var(--gold);
}
.fragrance-content h2 {
  margin: 0 0 21px;
  color: #fff;
  font-size: clamp(39px, 4.5vw, 57px);
  font-weight: 600;
  line-height: 1.08;
}
.fragrance-content h2 strong {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}
.fragrance-content > p {
  margin-bottom: 26px;
  color: #ffffff99;
  line-height: 1.8;
}
.fragrance-benefits {
  margin: 0 0 31px;
  padding: 0;
  list-style: none;
}
.fragrance-benefits li {
  display: flex;
  margin-bottom: 12px;
  color: #ffffffbf;
  font-size: 13px;
}
.fragrance-benefits i {
  margin: 1px 9px 0 0;
  color: #8eaf84;
}
.fragrance-btn {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
}
.fragrance-btn:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}
.fragrance-item {
  display: flex;
  height: 128px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid #ffffff26;
  color: #fff;
  transition: 0.3s;
}
.fragrance-item:hover {
  border-color: var(--gold);
  background: #d69a2d14;
  transform: translateY(-4px);
}
.fragrance-item i {
  color: var(--gold);
  font-size: 24px;
}
.fragrance-item span {
  font:
    600 15px "Playfair Display",
    serif;
}
.fragrance-note {
  margin: 18px 0 0;
  color: #ffffff6e;
  font-size: 11px;
  text-align: center;
}
.recommendation-section {
  padding: 105px 0 !important;
  background: var(--cream);
}
.section-title {
  margin: 0;
  color: var(--ink);
  font:
    600 clamp(40px, 4.5vw, 56px)/1.08 "Playfair Display",
    serif;
}
.section-title span {
  display: block;
  color: var(--gold);
  font-style: italic;
}
.recommendation-text {
  max-width: 480px;
  margin: 22px 0 30px;
  color: var(--muted);
  line-height: 1.8;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 17px;
}
.contact-item > i {
  display: grid;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  place-items: center;
  border: 1px solid #d69a2d6b;
  border-radius: 50%;
  color: var(--gold);
}
.contact-item small {
  display: block;
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-item a,
.contact-item strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.recommendation-form {
  padding: 38px;
  border-top: 3px solid var(--gold);
  background: #fff;
  box-shadow: var(--shadow);
}
.recommendation-form .form-label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.recommendation-form .form-control,
.recommendation-form .form-select {
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid #cad0cb;
  border-radius: 0;
  background: #faf9f5;
  color: var(--ink);
  box-shadow: none;
  font-size: 13px;
}
.recommendation-form textarea.form-control {
  min-height: 105px;
  resize: vertical;
}
.recommendation-form .form-control:focus,
.recommendation-form .form-select:focus {
  border-color: var(--gold);
  background: #fff;
}
.recommendation-submit {
  width: 100%;
  min-height: 55px;
  margin-top: 7px;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}
.recommendation-submit:hover {
  background: var(--gold);
  color: var(--ink);
}
.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}
.site-footer {
  padding: 75px 0 0;
  background: #0b1b17;
  color: #ffffff9e;
}
.footer-logo-box {
  display: inline-block;
  padding: 9px 12px;
  background: #fff;
  border-radius: 20px;
}
.footer-logo-image {
  display: block;
  width: 185px;
}
.footer-description {
  max-width: 340px;
  margin: 23px 0;
  line-height: 1.75;
}
.footer-social {
  display: flex;
  gap: 9px;
}
.footer-social a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #d69a2d59;
  color: var(--gold);
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}
.footer-title {
  margin-bottom: 24px;
  color: #fff;
  font-size: 17px;
}
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li {
  margin-bottom: 11px;
}
.footer-links a,
.footer-contact a {
  color: #ffffff9e;
  font-size: 13px;
  text-decoration: none;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
  font-size: 13px;
}
.footer-contact i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.footer-contact p {
  margin: 0;
  line-height: 1.7;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding: 22px 0;
  border-top: 1px solid #ffffff1a;
}
.footer-bottom p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 50px;
  background: #247e50;
  box-shadow: 0 10px 30px #10231f40;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.floating-whatsapp i {
  font-size: 20px;
}
.floating-whatsapp:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}
@media (max-width: 991.98px) {
  .top-bar {
    display: none;
  }
  .main-navbar {
    min-height: 72px;
  }
  .site-logo {
    height: 46px;
  }
  .navbar-collapse {
    padding: 18px 0;
  }
  .main-navbar .nav-link {
    margin: 0;
    padding: 9px 0 !important;
  }
  .main-navbar .nav-link:after {
    display: none;
  }
  .quote-btn {
    display: block;
    width: 100%;
  }
  .hero-section:before {
    display: none;
  }
  .min-vh-75 {
    min-height: auto;
  }
  .hero-content {
    padding: 75px 0 25px;
    text-align: center;
  }
  .hero-label {
    justify-content: center;
  }
  .hero-content > p:not(.hero-trust) {
    margin-right: auto;
    margin-left: auto;
  }
  .hero-buttons,
  .hero-features,
  .hero-trust {
    justify-content: center;
  }
  .hero-image-wrapper {
    min-height: 570px;
  }
  .hero-circle {
    width: 440px;
    height: 440px;
  }
  .hero-image {
    width: 48%;
    max-height: 500px;
  }
  .hero-visual-note {
    top: 30px;
    right: 20px;
  }
  .delivery-badge {
    right: 14%;
    bottom: 55px;
  }
  .fact-item {
    min-height: 112px;
  }
  .product-facts .col-6:nth-child(2) .fact-item {
    border-right: 0;
  }
  .product-facts .col-6:nth-child(-n + 2) .fact-item {
    border-bottom: 1px solid #ffffff1f;
  }
  .fragrance-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .fragrance-label {
    justify-content: center;
  }
  .fragrance-benefits {
    display: inline-block;
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .solutions-section,
  .products-section,
  .fragrances-section {
    padding: 78px 0;
  }
  .recommendation-section {
    padding: 75px 0 !important;
    text-align: center;
  }
  .recommendation-section .section-title {
    text-align: center !important;
  }
  .recommendation-text {
    margin-right: auto;
    margin-left: auto;
  }
  .contact-item {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }
  .recommendation-form {
    padding: 25px 19px;
    text-align: left;
  }
  .site-footer {
    padding-top: 55px;
    text-align: center;
  }
  .footer-description {
    margin-right: auto;
    margin-left: auto;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-contact {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    margin-top: 35px;
  }
  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 52px;
    height: 52px;
    min-height: 52px;
    justify-content: center;
    padding: 0;
  }
  .floating-whatsapp span {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .hero-content {
    padding: 58px 0 5px;
  }
  .hero-content h1 {
    font-size: 46px;
  }
  .hero-content > p:not(.hero-trust) {
    font-size: 15px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .hero-features {
    gap: 9px 15px;
  }
  .hero-trust {
    gap: 13px;
    font-size: 9px !important;
  }
  .hero-image-wrapper {
    min-height: 440px;
  }
  .hero-circle {
    width: 330px;
    height: 330px;
  }
  .hero-image {
    width: 58%;
    max-height: 380px;
  }
  .hero-visual-note {
    display: none;
  }
  .delivery-badge {
    right: 1px;
    bottom: 40px;
  }
  .fact-item {
    min-height: 105px;
    flex-direction: column;
    gap: 5px;
    padding: 16px 7px;
    text-align: center;
  }
  .fact-icon {
    font-size: 22px;
  }
  .fact-item strong {
    font-size: 15px;
  }
  .fact-item span {
    font-size: 8px;
  }
  .section-heading {
    margin-bottom: 34px;
  }
  .section-heading h2 {
    font-size: 37px;
  }
  .solution-card {
    padding: 24px 16px;
    text-align: center;
  }
  .solution-icon {
    margin: 0 auto 18px;
  }
  .solution-card h3 {
    font-size: 17px;
  }
  .solution-card p {
    font-size: 11px;
  }
  .product-image-box {
    height: 280px;
  }
  .product-content {
    padding: 24px;
  }
  .fragrance-content h2 {
    font-size: 38px;
  }
  .fragrance-item {
    height: 108px;
  }
  .fragrance-item span {
    font-size: 13px;
  }
  .site-footer .row {
    row-gap: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
  }
}
