
/* My Perfume Concierge (MPC) - Aesthetic System CSS */
/* -------------------------------------------------- */

/* 1. Core Variables & Root Setup
   -------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600&display=swap');

:root {
  --color-parchment: #F6F3EE;
  --color-parchment-darker: #EFEBE4; /* For button hover */
  --color-charcoal: #1F1F1F;
  --color-taupe: #8A857E;
  --color-gold: #B7A46A;

  --layout-max-width: 1040px;
}

/* 2. Base & Body Styles
   -------------------------------------------------- */
body {
  background-color: var(--color-parchment);
  color: #2b2b2b;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 18px;
  margin: 0;
  padding: 2rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border: 15px solid var(--color-gold);
  min-height: 100vh;
  box-sizing: border-box;
}

/* 3. Layout & Structure
   -------------------------------------------------- */
.page-wrapper {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: 2rem 0;
}

section {
  padding: 3rem 0;
  text-align: center;
}

/* 4. Typography
   -------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.25;
  color: #1f1f1f;
  margin: 0 0 1rem 0;
}

p, li, span, a, button {
  font-family: 'Inter', sans-serif;
}

h1 {
  font-size: 2.8rem;
  font-weight: 600; /* Bolder for H1 */
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--color-taupe);
  font-weight: 500;
}

p {
  max-width: 720px;
  margin: 0 auto 1.5rem auto;
}

.subline {
  font-size: 1.25rem;
  color: var(--color-taupe);
  max-width: 600px;
  margin: 1rem auto 2.5rem auto;
}

/* 5. Buttons & UI Elements
   -------------------------------------------------- */
.cta-button {
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: transparent;
  color: var(--color-taupe);
  border: 1px solid var(--color-taupe);
  padding: 1rem 2.5rem;
  margin-top: 1rem;
  cursor: default;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: transparent;
}

/* 6. Dividers & Accents
   -------------------------------------------------- */
.section-divider {
  border: 0;
  height: 1px;
  background-color: var(--color-charcoal);
  width: 100px;
  margin: 4rem auto;
}

/* 7. Section-Specific & Image Styles
   -------------------------------------------------- */
.hero-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 5rem auto;
  border: 8px solid var(--color-gold);
}

.how-it-works-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  text-align: left;
  max-width: 900px;
  margin: 3rem auto 0 auto;
  align-items: stretch;
}

.step {
  flex: 1;
  padding: 2rem;
  border: 1px solid var(--color-gold);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  background-color: var(--color-parchment-darker);
}

.step-number {
  font-family: 'Playfair Display', serif; /* Keep serif for numbers */
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.step-content h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--color-charcoal);
}

.step-content p {
    margin: 0;
}

/* What You Get Section */
#what-you-get {
    text-align: center;
}

#what-you-get h2 {
    margin-bottom: 1rem;
}

#what-you-get .subtitle {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: var(--color-taupe);
}

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.feature-card {
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
