:root {
  --ivory: #f8f4ec;
  --cream: #fffaf1;
  --charcoal: #282522;
  --muted: #6f665d;
  --gold: #b88a44;
  --black: #151515;
  --line: rgba(40,37,34,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: rgba(248,244,236,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.logo { display: grid; gap: 2px; }
.logo span {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .14em;
}
.logo small { font-size: 11px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; gap: 26px; align-items: center; font-size: 14px; font-weight: 600; }
.nav-cta { padding: 10px 16px; border: 1px solid var(--charcoal); border-radius: 999px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 28px; }

.hero {
  min-height: 84vh;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
  padding: 72px 6vw;
  background:
    radial-gradient(circle at 85% 25%, rgba(184,138,68,.20), transparent 30%),
    linear-gradient(135deg, var(--cream), var(--ivory));
}
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 700; }
h1, h2, h3 { font-family: "Cormorant Garamond", serif; margin: 0; }
h1 { font-size: clamp(52px, 8vw, 92px); line-height: .92; max-width: 800px; }
h2 { font-size: clamp(36px, 5vw, 58px); line-height: 1; }
h3 { font-size: 28px; }
p { line-height: 1.7; color: var(--muted); }
.hero-text { max-width: 620px; font-size: 18px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 22px; border-radius: 999px; font-weight: 700; border: 1px solid var(--charcoal); }
.btn.primary { background: var(--black); color: white; }
.btn.secondary { background: transparent; color: var(--charcoal); }
.hero-card {
  min-height: unset;
  border-radius: 36px;
  background: linear-gradient(160deg, #2b2723, #0e0e0e);
  color: white;
  display: grid;
  place-items: center;
  padding: 0;
  box-shadow: 0 28px 90px rgba(0,0,0,.22);
}
.hero-card p { color: #e8dcc9; text-align: center; }
.bottle {
  width: 150px;
  height: 250px;
  border-radius: 38px 38px 22px 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(184,138,68,.32));
  position: relative;
  box-shadow: inset 0 0 40px rgba(255,255,255,.38), 0 18px 50px rgba(184,138,68,.25);
}
.bottle::before {
  content: "";
  position: absolute;
  top: -58px;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 58px;
  border-radius: 16px 16px 4px 4px;
  background: #d9c7aa;
}
.bottle::after {
  content: "VFW";
  position: absolute;
  inset: 80px 24px auto;
  text-align: center;
  padding: 24px 0;
  border: 1px solid rgba(40,37,34,.32);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  color: var(--charcoal);
}

.section { padding: 92px 6vw; }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; border-top: 1px solid var(--line); }
.center { text-align: center; }
.narrow { max-width: 680px; margin-left: auto; margin-right: auto; }
.cards { display: grid; gap: 22px; margin-top: 40px; }
.three { grid-template-columns: repeat(3, 1fr); }
.four { grid-template-columns: repeat(4, 1fr); }
.card, .mini-card, .contact-box, .quote-card {
  border: 1px solid var(--line);
  background: rgba(255,250,241,.72);
  border-radius: 28px;
  padding: 30px;
}
.icon { color: var(--gold); font-size: 28px; }
.dark { background: var(--charcoal); color: white; }
.dark p { color: #ded2c3; }
.dark .mini-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.13); }
.dark h3 { color: white; }
.workshop { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
ul { padding-left: 20px; color: var(--muted); line-height: 2; margin-bottom: 28px; }
.quote-card { min-height: 360px; display: grid; place-items: center; background: linear-gradient(135deg, #fffaf1, #eadcc4); }
.quote-card p { font-family: "Cormorant Garamond", serif; font-size: 40px; line-height: 1.1; color: var(--charcoal); }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; background: var(--cream); }
.contact-box a { color: var(--gold); font-weight: 700; }
footer { padding: 34px 6vw; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); }
footer p { margin: 0; font-size: 14px; }

.ingredient-download {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.ingredient-download .btn {
  background: transparent;
  color: #fffaf1;
  border: 1px solid rgba(255,250,241,.65);
  padding: 14px 26px;
  border-radius: 999px;
  transition: all .3s ease;
}
.ingredient-download .btn:hover {
  background: #fffaf1;
  color: #282522;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    padding: 22px 6vw;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .hero, .split, .workshop, .contact { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
  .hero-card { min-height: 360px; }
  .three, .four { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}


/* Perfume sample hero image hover */
.perfume-hover {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

/* Perfume sample hero image hover */
.perfume-hover {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  background: none;
}

.perfume-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  transition: opacity .45s ease;
  border-radius: 36px;
}

.perfume-img-primary {
  opacity: 1;
}

.perfume-img-hover {
  opacity: 0;
}

.perfume-hover:hover .perfume-img-primary {
  opacity: 0;
}

.perfume-hover:hover .perfume-img-hover {
  opacity: 1;
}

.perfume-hover p {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;

  background: rgba(21,21,21,.58);
  backdrop-filter: blur(10px);

  padding: 12px 18px;
  border-radius: 999px;

  white-space: nowrap;
}

/*Calendly Booking Widget Style*/
.booking-card {
  height: 750px;
    border-radius: 28px;
  overflow: hidden;
  border-radius: 28px;
  background: #fffaf1;
  border: 1px solid rgba(40,37,34,.14);
  box-shadow: 0 24px 70px rgba(0,0,0,.08);
}

.booking-card iframe {
  border-radius: 28px;
}

.booking-card .calendly-inline-widget {
  height: 760px !important;
  transform: scale(1);
  transform-origin: top center;
  width: 116%;
  margin-left: -8%;
}

@media (max-width: 860px) {
  .perfume-hover { min-height: 360px; }
}
