:root {
  --white: #ffffff;
  --pearl: #f8f7f5;
  --cream: #f2eee9;
  --soft-gray: #d8d4ce;
  --medium-gray: #8d8882;
  --text: #24211f;
  --muted: #5f5a55;
  --border: #c7c2bc;
  --button-dark: #211f1e;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  --soft-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--white);
}

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

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

.site-wrap {
  width: 100%;
  min-height: 100vh;
  background: var(--white);
}

/* Header */

.header {
  height: 90px;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  font-size: 40px;
  letter-spacing: 14px;
  font-weight: 400;
  line-height: 1;
  color: #111;
}

.nav {
  display: flex;
  align-items: center;
  gap: 48px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  color: #202020;
}

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

.nav a:hover {
  color: #7c6f64;
}

.header-button {
  border: 1px solid #a9a49f;
  background: linear-gradient(180deg, #f6f5f3, #d8d5d0);
  padding: 13px 30px;
  border-radius: 3px;
  font-size: 17px;
  font-family: Georgia, "Times New Roman", serif;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Hero */

.hero {
  min-height: 490px;
  display: grid;
  grid-template-columns: 43% 57%;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 38%),
    linear-gradient(115deg, #fbfaf8 0%, #f4f0eb 42%, #e7e1da 100%);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.08) 36%, rgba(255,255,255,0) 70%),
    repeating-linear-gradient(
      112deg,
      rgba(255, 255, 255, 0.12) 0px,
      rgba(255, 255, 255, 0.12) 2px,
      transparent 2px,
      transparent 60px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 88px 0 70px 110px;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(52px, 5.3vw, 84px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -2.5px;
  margin-bottom: 28px;
  color: #201f1e;
}

.hero p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.7;
  max-width: 570px;
  color: #4c4945;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  height: 52px;
  border-radius: 3px;
  font-size: 19px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #272422, #171514);
  color: #fff;
  border: 1px solid #171514;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.55);
  color: #211f1e;
  border: 1px solid #8e8984;
}

/* Hero product art */

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 490px;
}

.marble-platform {
  position: absolute;
  right: 92px;
  bottom: 0;
  width: 620px;
  height: 150px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(215,205,193,0.72)),
    repeating-linear-gradient(35deg, rgba(133, 106, 83, 0.09) 0 1px, transparent 1px 54px);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.06);
  transform: perspective(800px) rotateX(2deg);
}

.jar {
  position: absolute;
  right: 265px;
  bottom: 98px;
  width: 275px;
  height: 250px;
  border-radius: 42px 42px 58px 58px;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0.2) 0%,
      rgba(255,255,255,0.95) 12%,
      rgba(230,225,216,0.9) 33%,
      rgba(255,255,255,0.97) 55%,
      rgba(198,190,181,0.82) 76%,
      rgba(255,255,255,0.75) 100%
    );
  border: 1px solid rgba(115, 112, 108, 0.26);
  box-shadow:
    inset 18px 0 32px rgba(255,255,255,0.62),
    inset -18px 0 38px rgba(0,0,0,0.06),
    0 30px 58px rgba(0, 0, 0, 0.17);
  overflow: hidden;
}

.jar::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 62px;
  border-radius: 40px 40px 20px 20px;
  background:
    linear-gradient(90deg,
      #ececec 0%,
      #ffffff 18%,
      #bdbdbd 38%,
      #151515 49%,
      #d7d7d7 65%,
      #ffffff 80%,
      #bcbcbc 100%
    );
  border-bottom: 1px solid rgba(0,0,0,0.22);
}

.jar::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 13px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  filter: blur(6px);
}

.jar-label {
  position: absolute;
  top: 100px;
  left: 24px;
  right: 24px;
  text-align: center;
  color: #111;
}

.jar-brand {
  font-size: 30px;
  letter-spacing: 12px;
  margin-bottom: 13px;
}

.jar-name {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 9px;
}

.jar-sub {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 1.2px;
  color: #4d4944;
  margin-bottom: 15px;
}

.jar-size {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.9px;
  color: #3d3a36;
}

.glass-column {
  position: absolute;
  right: 100px;
  top: 78px;
  width: 110px;
  height: 315px;
  border-radius: 50px 50px 22px 22px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.44) 0 8px,
      rgba(185,181,176,0.15) 8px 14px
    ),
    linear-gradient(90deg, rgba(255,255,255,0.78), rgba(222,216,209,0.28));
  border: 1px solid rgba(255,255,255,0.55);
  filter: blur(0.2px);
  opacity: 0.75;
}

.glass-sphere {
  position: absolute;
  right: 560px;
  bottom: 112px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 22%, #ffffff 0 8%, rgba(255,255,255,0.74) 9% 26%, rgba(213,207,198,0.48) 55%, rgba(255,255,255,0.62) 100%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 16px 26px rgba(0,0,0,0.08);
}

.flower {
  position: absolute;
  right: 0;
  bottom: 38px;
  width: 250px;
  height: 170px;
  opacity: 0.92;
}

.petal {
  position: absolute;
  width: 105px;
  height: 62px;
  background: radial-gradient(circle at 35% 40%, #fff, #eee6dc 78%);
  border-radius: 90% 15% 90% 15%;
  box-shadow: inset -8px -4px 18px rgba(210,201,190,0.35);
}

.petal.one {
  left: 62px;
  top: 36px;
  transform: rotate(-32deg);
}

.petal.two {
  left: 110px;
  top: 44px;
  transform: rotate(19deg);
}

.petal.three {
  left: 84px;
  top: 80px;
  transform: rotate(62deg);
}

.petal.four {
  left: 34px;
  top: 83px;
  transform: rotate(8deg);
}

.flower-center {
  position: absolute;
  left: 104px;
  top: 83px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, #f7dfac, #c3a25d);
}

.glass-dish {
  position: absolute;
  right: -35px;
  bottom: 42px;
  width: 245px;
  height: 52px;
  border-radius: 50%;
  border: 6px solid rgba(255,255,255,0.55);
  box-shadow: inset 0 0 18px rgba(133,127,120,0.22), 0 12px 24px rgba(0,0,0,0.05);
  background: rgba(255,255,255,0.18);
}

/* Featured products */

.featured {
  padding: 28px 7% 42px;
  background: #ffffff;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 9px;
  font-weight: 400;
  color: #2a2928;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: #9e9993;
  margin: 14px auto 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  max-width: 1250px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 16px 16px 27px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.035);
}

.product-image-placeholder {
  height: 172px;
  border-radius: 6px;
  background:
    linear-gradient(145deg, #faf9f7, #ece8e3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #a8a29c;
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 2.5px;
  font-size: 14px;
  margin-bottom: 15px;
}

.placeholder-icon {
  width: 48px;
  height: 38px;
  border: 1px solid #c6c1bb;
  border-radius: 4px;
  margin-bottom: 14px;
  position: relative;
}

.placeholder-icon::before {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 8px;
  width: 18px;
  height: 13px;
  border-left: 1px solid #c6c1bb;
  border-bottom: 1px solid #c6c1bb;
  transform: rotate(45deg);
}

.placeholder-icon::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  width: 8px;
  height: 8px;
  border: 1px solid #c6c1bb;
  border-radius: 50%;
}

.product-card h3 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #221f1d;
}

.product-card p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: #615c57;
  margin-bottom: 18px;
}

.product-card .shop-btn {
  width: 185px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #9d9690;
  background: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-card .shop-btn:hover {
  background: #f4f1ed;
  transform: translateY(-1px);
}

.product-real-image {
  width: 100%;
  height: 172px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
  background: #f5f2ee;
}

/* Velissé Footer / Newsletter / FAQ / Consultation Area */

.velisse-info {
  padding: 72px 7% 58px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f8f6f3 48%, #eee9e3 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.consultation-panel {
  max-width: 1250px;
  margin: 0 auto 48px;
  padding: 46px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(247,243,238,0.9));
  border: 1px solid rgba(156, 148, 139, 0.24);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.07);
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: #8b8178;
  text-transform: uppercase;
}

.consultation-copy h2,
.newsletter-card h2,
.faq-card h2 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
  color: #211f1d;
  margin-bottom: 16px;
}

.consultation-copy p,
.newsletter-card p,
.faq-card p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #5c5651;
}

.consultation-copy {
  max-width: 650px;
}

.consultation-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-content-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
}

.newsletter-card,
.faq-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(156, 148, 139, 0.2);
  border-radius: 12px;
  padding: 42px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.055);
}

.newsletter-form {
  margin-top: 28px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: #3d3935;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #cfc8c0;
  background: #fff;
  color: #24211f;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 4px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-row textarea {
  min-height: 105px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #8d8176;
  box-shadow: 0 0 0 3px rgba(141, 129, 118, 0.12);
}

.newsletter-submit {
  width: 100%;
  height: 52px;
  border: 1px solid #171514;
  background: linear-gradient(180deg, #272422, #171514);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.13);
}

.form-note {
  margin-top: 14px;
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: #817970 !important;
}

.faq-list {
  margin-top: 28px;
}

.faq-list details {
  border-top: 1px solid rgba(156, 148, 139, 0.28);
  padding: 18px 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(156, 148, 139, 0.28);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 38px;
  font-size: 20px;
  font-weight: 400;
  color: #211f1d;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  color: #8d8176;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin-top: 12px;
  padding-right: 34px;
  font-size: 15px;
}

/* Main Footer */

.site-footer {
  background: #191716;
  color: #f8f5ef;
  padding: 58px 7% 24px;
}

.footer-inner {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr 0.9fr;
  gap: 42px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 34px;
  letter-spacing: 12px;
  color: #fff;
}

.footer-brand p {
  max-width: 440px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #cfc8c0;
}

.social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  color: #f8f5ef;
  transition: background 0.2s ease, border 0.2s ease;
}

.social-links a:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

.footer-column h3 {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.footer-column a {
  display: block;
  margin-bottom: 12px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: #cfc8c0;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1250px;
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  color: #aaa29a;
}

/* Responsive */

@media (max-width: 1100px) {
  .header {
    padding: 0 28px;
  }

  .logo {
    font-size: 32px;
    letter-spacing: 10px;
  }

  .nav {
    gap: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 70px 42px 30px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .jar {
    right: 260px;
  }

  .marble-platform {
    right: 70px;
  }

  .glass-sphere {
    right: 555px;
  }
}

@media (max-width: 980px) {
  .consultation-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-content-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .header {
    height: auto;
    padding: 24px;
    flex-direction: column;
    gap: 22px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 28px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .hero-visual {
    transform: scale(0.78);
    transform-origin: top center;
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .velisse-info {
    padding: 52px 22px 42px;
  }

  .consultation-panel,
  .newsletter-card,
  .faq-card {
    padding: 30px 24px;
  }

  .consultation-copy h2,
  .newsletter-card h2,
  .faq-card h2 {
    font-size: 34px;
  }

  .consultation-actions {
    width: 100%;
  }

  .consultation-actions .btn {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 48px 24px 24px;
  }

  .footer-logo {
    font-size: 29px;
    letter-spacing: 9px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .logo {
    font-size: 28px;
    letter-spacing: 8px;
  }

  .hero-content {
    padding: 56px 24px 18px;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    min-width: auto;
  }

  .hero-visual {
    transform: scale(0.58);
    transform-origin: top left;
    width: 760px;
    min-height: 280px;
    margin-left: 18px;
  }

  .featured {
    padding: 28px 20px 44px;
  }

  .section-title {
    letter-spacing: 5px;
  }
}