/* =============================================
   Face Academy — Botulinum Toxin
   Warm luxury · light · image-rich
   ============================================= */

:root {
  --white: #FFFFFF;
  --cream: #FAF6F1;
  --warm: #F3EBE3;
  --sand: #E8DDD3;

  --text: #3A2F2A;
  --text-soft: #6B5E56;
  --text-light: #9A8E85;

  --sage: #5C7A6B;
  --sage-dark: #3D5A4C;
  --sage-light: #E8F0EB;

  --terracotta: #C4715A;
  --terracotta-dark: #A85A45;
  --terracotta-light: #F5E8E3;

  --gold: #B8956B;
  --gold-light: #F0E4D4;

  --shadow-sm: 0 2px 12px rgba(58, 47, 42, 0.06);
  --shadow-md: 0 8px 32px rgba(58, 47, 42, 0.1);
  --shadow-lg: 0 16px 48px rgba(58, 47, 42, 0.12);

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.25rem; }

em { font-style: italic; color: var(--sage-dark); }

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.tag--gold {
  color: #8B6914;
  background: var(--gold-light);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--ease);
}

.btn--primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 4px 16px rgba(196, 113, 90, 0.35);
}

.btn--primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--sage);
  color: white;
  box-shadow: 0 4px 16px rgba(92, 122, 107, 0.3);
}

.btn--secondary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

.btn--white {
  background: white;
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.btn--white:hover { transform: translateY(-2px); }

.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ---- Announcement ---- */
.announce {
  background: var(--sage-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.announce strong { color: var(--gold-light); }
.announce a {
  color: white;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.announce a:hover { border-color: white; }

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text);
}

.brand--light { color: white; }

.brand__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: var(--ease);
}

.header__nav a:not(.btn):hover { color: var(--terracotta); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--ease);
}

/* ---- Hero ---- */
.hero {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__copy h1 { margin-bottom: 20px; }

.hero__copy > p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.price-pill {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-pill s {
  color: var(--text-light);
  font-size: 0.9rem;
}

.price-pill strong {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--terracotta);
}

.price-pill span {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-pill--lg strong { font-size: 2.25rem; }

.hero__checks {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__checks li {
  font-size: 0.85rem;
  color: var(--text-soft);
  padding-left: 22px;
  position: relative;
}

.hero__checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.hero__media {
  position: relative;
}

.hero__img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero__badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px 20px 12px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
}

.hero__badge img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.hero__badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.hero__badge span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ---- Stats ---- */
.stats {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--sage-dark);
  margin-bottom: 4px;
}

.stat span {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* ---- Sections ---- */
.section { padding: 96px 0; }
.section--warm { background: var(--warm); }
.section--soft { background: var(--cream); }

.section-head { margin-bottom: 48px; }
.section-head--center { text-align: center; }

.section-head h2 { margin-top: 4px; }

.rating-line {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.rating-line strong { color: var(--gold); }

/* ---- Cards ---- */
.cards {
  display: grid;
  gap: 24px;
}

.cards--4 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand);
  transition: var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card__body {
  padding: 24px 28px 28px;
}

.card__body h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 8px;
}

.card__body p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ---- Bundle ---- */
.bundle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.bundle__media img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.bundle__copy h2 { margin-bottom: 16px; }

.bundle__copy > p {
  color: var(--text-soft);
  margin-bottom: 28px;
}

.bundle__courses {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.bundle__course {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--sand);
}

.bundle__course img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
}

.bundle__course strong {
  display: block;
  font-size: 0.95rem;
}

.bundle__course span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.bundle__copy .price-pill { margin-bottom: 24px; }

/* ---- Features strip ---- */
.features {
  padding: 48px 0;
  background: var(--sage-dark);
}

.features__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.feature strong {
  display: block;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.feature span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ---- Curriculum ---- */
.curriculum {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.curriculum__copy p {
  color: var(--text-soft);
  margin: 16px 0 28px;
}

.curriculum__visual {
  position: relative;
}

.curriculum__img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.modules {
  position: absolute;
  bottom: -24px;
  left: -24px;
  right: 24px;
  list-style: none;
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand);
}

.modules li {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--sand);
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.modules li:last-child { border-bottom: none; }

.modules li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Lessons ---- */
.lessons {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.lessons__gallery {
  display: grid;
  gap: 12px;
}

.lessons__gallery img {
  width: 100%;
  height: 160px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.lessons__gallery img:first-child {
  height: 200px;
  border-radius: var(--radius-lg);
}

.lessons__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lessons__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: white;
  border-radius: var(--radius);
  font-size: 0.875rem;
  border: 1px solid var(--sand);
  transition: var(--ease);
}

.lessons__list li:hover {
  border-color: var(--sage);
  background: var(--sage-light);
}

.lessons__featured {
  background: var(--sage-dark) !important;
  color: white !important;
  border-color: var(--sage-dark) !important;
  font-weight: 600;
}

.lessons__featured .play { color: var(--gold-light); }

.play {
  color: var(--terracotta);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.update-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding: 28px 32px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-sm);
}

.update-banner img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
}

.update-banner h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--sage-dark);
  margin-bottom: 6px;
}

.update-banner p {
  font-size: 0.875rem;
  color: var(--text-soft);
}

/* ---- Certificate ---- */
.cert {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cert__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cert__bg {
  width: 100%;
  aspect-ratio: 7/5;
}

.cert__overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 47, 42, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 32px;
}

.cert__overlay p {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 12px;
}

.cert__overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: white;
  margin-bottom: 12px;
}

.cert__overlay span {
  font-size: 0.85rem;
  opacity: 0.85;
}

.cert__copy h2 { margin-bottom: 16px; }

.cert__copy p {
  color: var(--text-soft);
  margin-bottom: 28px;
}

/* ---- Reviews ---- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 4px;
}

.review__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.review p {
  font-size: 0.92rem;
  color: var(--text);
  flex: 1;
  font-style: italic;
  line-height: 1.65;
}

.review footer {
  font-size: 0.82rem;
  color: var(--text-light);
  padding-top: 12px;
  border-top: 1px solid var(--sand);
}

.review footer strong { color: var(--text); }

/* ---- Pricing ---- */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 840px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--sand);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
}

.pricing-card__img {
  width: 100%;
  height: 180px;
}

.pricing-card__body {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.pricing-card--featured .pricing-card__label { color: var(--sage); }

.pricing-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-card__price {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-card__price sup {
  font-size: 1.25rem;
  vertical-align: super;
}

.pricing-card--featured .pricing-card__price { color: var(--sage-dark); }

.pricing-card__was {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-card li {
  font-size: 0.875rem;
  color: var(--text-soft);
  padding: 9px 0;
  border-bottom: 1px solid var(--sand);
  padding-left: 20px;
  position: relative;
}

.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
  font-size: 0.8rem;
}

.pricing-card__note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* ---- Guarantee ---- */
.guarantee {
  padding: 80px 0;
  background: var(--terracotta-light);
}

.guarantee__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.guarantee__inner > img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.guarantee__days {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 12px;
}

.guarantee h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.guarantee p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* ---- About ---- */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about__bio h2 { margin-bottom: 20px; }

.about__bio p {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.about__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.about__tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage-dark);
  background: var(--sage-light);
  padding: 7px 16px;
  border-radius: 100px;
}

/* ---- FAQ ---- */
.faq-wrap { max-width: 680px; margin: 0 auto; }

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq details {
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--sand);
  overflow: hidden;
}

.faq summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--terracotta);
}

.faq details[open] summary::after { content: '−'; }

.faq details[open] summary {
  background: var(--sage-light);
  color: var(--sage-dark);
}

.faq p {
  padding: 0 24px 18px;
  font-size: 0.875rem;
  color: var(--text-soft);
}

/* ---- Final CTA ---- */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(58, 47, 42, 0.72);
}

.cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta__content h2 {
  color: white;
  margin-bottom: 16px;
}

.cta__content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.cta__content p s { opacity: 0.6; }

.cta__content p strong {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--gold-light);
  margin: 0 6px;
}

/* ---- Footer ---- */
.footer {
  background: var(--sage-dark);
  padding: 32px 0;
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero__grid,
  .bundle,
  .curriculum,
  .lessons,
  .cert,
  .about,
  .guarantee__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__badge { left: 16px; bottom: 16px; }

  .modules {
    position: static;
    margin-top: 20px;
  }

  .cards--4,
  .reviews,
  .pricing,
  .stats__row,
  .features__row {
    grid-template-columns: 1fr;
  }

  .header__nav { display: none; }

  .header__nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    border-bottom: 1px solid var(--sand);
    box-shadow: var(--shadow-md);
  }

  .menu-toggle { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { padding: 40px 0 56px; }
  .cta { padding: 80px 0; }
}
