/* ===== Design Tokens ===== */
:root {
  --wine: #6d1f3d;
  --wine-dark: #521730;
  --lilac: #b497c9;
  --lilac-light: #ece2f4;
  --lilac-pale: #f7f3fb;
  --white: #ffffff;
  --text: #3a2e3e;
  --text-soft: #6e5f70;

  --font-title: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;

  --max-width: 1120px;
  --radius: 18px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lilac-light);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--wine);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--wine);
}

.nav__link--cta {
  background: var(--wine);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
}

.nav__link--cta:hover {
  background: var(--wine-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--wine);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, var(--lilac-pale) 0%, var(--lilac-light) 60%, var(--lilac) 130%);
  padding: 110px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 31, 61, 0.12), transparent 70%);
  top: -180px;
  right: -160px;
}

.hero__inner {
  position: relative;
  max-width: 720px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: 18px;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--wine-dark);
  margin-bottom: 20px;
}

.nowrap {
  white-space: nowrap;
}

.mobile-break {
  display: none;
}

@media (max-width: 480px) {
  .mobile-break {
    display: block;
  }
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 36px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(109, 31, 61, 0.28);
}

.btn--primary:hover {
  background: var(--wine-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(109, 31, 61, 0.34);
}

/* ===== Sections (generic) ===== */
.section {
  padding: 90px 0;
}

.section--alt {
  background: var(--lilac-pale);
}

.section__title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 600;
  color: var(--wine-dark);
  margin-bottom: 22px;
}

.section__title--center {
  text-align: center;
}

.section__lead {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-soft);
  font-size: 1.02rem;
}

/* ===== About ===== */
.about {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(145deg, var(--lilac-light), var(--lilac));
  box-shadow: 0 8px 24px rgba(109, 31, 61, 0.15);
}

.about__text p {
  margin-bottom: 16px;
  color: var(--text-soft);
}

/* ===== First Session ===== */
.first-session {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.first-session__badge {
  display: inline-block;
  background: var(--lilac-light);
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.process-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: 0 8px 24px rgba(109, 31, 61, 0.06);
  border: 1px solid var(--lilac-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(109, 31, 61, 0.12);
}

.process-card__number {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--lilac);
  margin-bottom: 12px;
}

.process-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.process-note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--wine);
  font-weight: 700;
}

.process-note__arrow {
  color: var(--wine);
  margin-right: 6px;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 820px;
  margin: 48px auto 0;
}

.contact-card {
  background: var(--lilac-pale);
  border: 1px solid var(--lilac-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform var(--transition), background var(--transition);
}

.contact-card:hover {
  background: var(--lilac-light);
  transform: translateY(-3px);
}

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.contact-card__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--wine);
}

.contact-card__label {
  font-weight: 600;
  color: var(--wine);
  font-size: 0.9rem;
}

.contact-card__value {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* ===== Footer ===== */
.footer {
  background: var(--wine-dark);
  color: var(--lilac-light);
  padding: 48px 0;
  text-align: center;
}

.footer__name {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__crp {
  min-height: 1em;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 18px;
}

.footer__copy {
  font-size: 0.78rem;
  opacity: 0.7;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: var(--wine);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(109, 31, 61, 0.4);
  z-index: 200;
  transition: transform var(--transition), background var(--transition);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.whatsapp-float:hover {
  background: var(--wine-dark);
  transform: scale(1.08);
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__photo {
    max-width: 220px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--lilac-light);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 14px 0;
    border-bottom: 1px solid var(--lilac-light);
  }

  .nav__link--cta {
    margin-top: 14px;
    text-align: center;
    border-bottom: none;
  }

  .hero {
    padding: 90px 0 70px;
  }

  .section {
    padding: 64px 0;
  }
}
