@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

:root {
  --bg: #f6f0f2;
  --bg-soft: #fbf8f9;
  --rose: #d8bcc3;
  --rose-deep: #b98796;
  --mauve: #9b6c79;
  --wine: #6c3240;
  --heading: #4a2331;
  /* Deep Burgundy / Plum for Headings */
  --text: #4d3a40;
  --text-soft: #7c6870;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(83, 47, 57, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --transition: all 0.35s ease;
  --max: 1280px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  width: 100%;
  display: block;
}

/* Hero */
.about-hero {
  padding: 28px 0 14px;
}

.about-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 485px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
}

.about-hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 240, 242, 0.94) 0%, rgba(246, 240, 242, 0.82) 38%, rgba(246, 240, 242, 0.18) 72%, rgba(246, 240, 242, 0.06) 100%);
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: clamp(26px, 5vw, 60px);
}

.about-hero-copy p {
  margin: 18px 0 0;
  font-size: 16px;
  max-width: 560px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-pill {
  padding: 10px 14px;
  background: rgb(241 240 240 / 43%);
  border: 1px solid rgba(185, 135, 150, 0.2);
  color: #4d3a40;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

/* Story */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.soft-card {
  background: linear-gradient(135deg, #f8eef0, #fffafb);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 520px;
  position: relative;
}

.soft-card img {
  width: 100%;
  height: 543px;
  object-fit: cover;
}

.soft-card.copy {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.soft-card.copy p {
  margin: 14px 0 0;
  max-width: 470px;
  font-size: 16px;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(155, 108, 121, 0.08);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f7eef1;
  display: grid;
  place-items: center;
  color: var(--wine);
  font-size: 22px;
  margin-bottom: 16px;
}

.value-card h3 {
  margin-bottom: 10px;
}

/* Metrics */
.metrics-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.metric-box {
  background: var(--white);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(155, 108, 121, 0.08);
}

.metric-box strong {
  display: block;
  font-size: 34px;
  color: var(--wine);
  margin-bottom: 8px;
}

/* Personality Test Section - NEW */
.personality-section {
  background: linear-gradient(135deg, #f8eef0, #fffafb);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.personality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.personality-content {
  padding: 48px;
}

.personality-content h2 {
  margin-bottom: 16px;
}

.personality-content p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.7;
}

.personality-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.personality-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.personality-feature i {
  width: 32px;
  height: 32px;
  background: rgba(185, 135, 150, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  font-size: 14px;
}

.personality-feature span {
  color: var(--text);
  font-size: 15px;
}

.personality-image {
  height: 100%;
  min-height: 480px;
  background-image: url('../images/about2.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.personality-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 50, 64, 0.2), rgba(108, 50, 64, 0.05));
}

.personality-quiz-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
  border-radius: 20px;
  padding: 32px;
  margin-top: 32px;
  text-align: center;
  border: 1px solid rgba(108, 50, 64, 0.1);
}

.personality-quiz-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.personality-quiz-card p {
  margin-bottom: 20px;
  font-size: 14px;
}

.scent-types {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.scent-type {
  text-align: center;
  padding: 12px;
}

.scent-type i {
  font-size: 28px;
  color: var(--rose-deep);
  margin-bottom: 8px;
  display: block;
}

.scent-type span {
  font-size: 12px;
  font-weight: 600;
  color: var(--wine);
}

/* Banner */
.promo-banner {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-items: center;
  margin: 14px 0;
  box-shadow: var(--shadow);
  width: 100%;
}

.promo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(64, 11, 20, 0.72) 0%, rgba(64, 11, 20, 0.28) 48%, rgba(64, 11, 20, 0.12) 100%);
}

.promo-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  width: min(620px, 100%);
  padding: 48px;
}

.promo-content p {
  color: rgba(255, 255, 255, 0.82);
  margin: 16px 0 22px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 1100px) {

  .split-section,
  .footer-grid,
  .values-grid,
  .metrics-wrap,
  .personality-grid {
    grid-template-columns: 1fr;
  }

  .personality-image {
    min-height: 350px;
  }
}

@media (max-width: 820px) {
  .about-hero-card {
    min-height: 390px;
    box-shadow: none;
  }

  .about-hero-card img {
    object-position: 80% center;
  }

  .about-hero-card::after {
    background: linear-gradient(90deg, rgba(246, 240, 242, 0.85) 0%, rgba(246, 240, 242, 0.75) 75%, rgba(246, 240, 242, 0) 100%);
  }

  .hero-pills {
    gap: 8px;
  }

  .hero-pill {
    padding: 8px 12px;
    font-size: 11px;
    white-space: nowrap;
  }

  .scent-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
  }

  .scent-type {
    padding: 0;
  }

  .scent-type i {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .scent-type span {
    font-size: 9.5px;
    line-height: 1.2;
    display: inline-block;
  }

  .about-hero-copy,
  .promo-content,
  .soft-card.copy,
  .personality-content {
    padding: 30px 24px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .value-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .value-card .value-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .value-card .value-text h3 {
    font-size: 17px;
    margin-bottom: 6px;
    margin-top: 0;
  }

  .value-card .value-text p {
    font-size: 14px;
    margin: 0;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300 !important;
}