* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #F6E9D8; /* Ivory/Champagne */
  color: #0D0D0D; /* Deep Charcoal */
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  background-color: #FFFFFF; /* keep header white */
  border-bottom: 1px solid rgba(212, 175, 55, 0.25); /* Royal Gold */
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #c79a3b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1a1a1a;
}

.brand-mark.small {
  width: 28px;
  height: 28px;
  font-size: 0.8rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.brand-tagline {
  font-size: 0.8rem;
  color: #666666;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.1rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #D4AF37; /* Royal Gold underline */
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta {
  flex-shrink: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn-primary {
  background-color: #D4AF37; /* Royal Gold */
  color: #0D0D0D;
  border-color: #D4AF37;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background-color: #B8962F; /* slightly darker gold */
  border-color: #B8962F;
  color: #0D0D0D;
  text-decoration: none;
}

.btn-ghost {
  background-color: transparent;
  color: #0D0D0D;
  border-color: rgba(212, 175, 55, 0.6);
}

.btn-ghost:hover {
  border-color: #046307; /* Emerald highlight */
  background-color: rgba(255, 255, 255, 0.9);
}

.btn:active {
  transform: translateY(1px);
}

.hero {
  padding: 4rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #0D0D0D;
}

.hero-subtitle {
  margin-bottom: 1.5rem;
  color: #4A2E1E; /* Rich Brown accent */
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.hero-note {
  font-size: 0.85rem;
  color: #777;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 260px;
  background: radial-gradient(circle at top, #FFFFFF, #F6E9D8 55%, #E6D4B8);
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.hero-bottle {
  height: 140px;
  border-radius: 999px;
  background: #F6E9D8 url("Signature Eau de Parfum.png") center/cover no-repeat; /* no overlay on picture */
  border: 2px solid #D4AF37;
  margin-bottom: 1rem;
}

.hero-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-meta {
  font-size: 0.8rem;
  color: #666;
}

.banner-section {
  padding: 1.5rem 0 0;
}

.banner-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.banner2-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.banner2-image {
  max-width: 560px;
}

.banner-with-copy {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: center;
  margin-top: 1.25rem;
}

.banner-copy h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.banner-copy p {
  color: #4A2E1E;
}

.banner1-visual {
  display: flex;
  justify-content: center;
}

.banner4-layout {
  grid-template-columns: minmax(0, 2.5fr) minmax(0, 1.5fr);
}

.banner4-visual {
  display: flex;
  justify-content: center;
}

.banner4-image {
  width: 80%;
  max-width: 260px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.banner5-layout {
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.banner5-visual {
  display: flex;
  justify-content: center;
}

.banner5-image {
  max-width: 360px;
}

.section {
  padding: 2.75rem 0;
}

.section-alt {
  background-color: #FDF8F0;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.section-intro {
  max-width: 640px;
  color: #555;
  margin-bottom: 1.75rem;
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.icon-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.card h3,
.icon-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card p,
.icon-card p {
  font-size: 0.92rem;
  color: #555;
}

.card-link {
  display: inline-flex;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #046307; /* Emerald */
  border-bottom: 1px solid rgba(4, 99, 7, 0.65);
}

.text-block p + p {
  margin-top: 0.75rem;
}

.text-block a {
  color: #1a1a1a;
  border-bottom: 1px solid rgba(199, 154, 59, 0.65);
}

.faq-list {
  display: grid;
  gap: 1.25rem;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.faq-item p {
  font-size: 0.92rem;
  color: #555;
}

.faq-cta {
  margin-top: 1.5rem;
}

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
  padding: 1.25rem 0;
  margin-top: 1rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-text {
  font-size: 0.85rem;
  color: #555;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.85rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: #777;
}

.footer-meta a {
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 2.5rem 0 2.25rem;
  }

  .section {
    padding: 2.2rem 0;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}
