/* ============ VARIABLES ============ */
:root {
  --rose: #c98a93;
  --rose-dark: #a86670;
  --rose-light: #f3dde1;
  --gold: #c9a876;
  --gold-light: #e8dcc3;
  --cream: #fdf9f5;
  --ivory: #faf3ee;
  --charcoal: #3a2e2f;
  --charcoal-soft: #5c4c4d;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;

  --shadow-sm: 0 2px 8px rgba(58, 46, 47, 0.06);
  --shadow-md: 0 8px 24px rgba(58, 46, 47, 0.08);
  --shadow-lg: 0 16px 40px rgba(58, 46, 47, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal-soft);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(201,138,147,0.08), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(201,168,118,0.10), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(201,138,147,0.06), transparent 50%);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.section { padding: 100px 24px; }
.section-inner { max-width: 1000px; margin: 0 auto; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-dark);
  font-weight: 500;
  margin-bottom: 12px;
}
.eyebrow.center { text-align: center; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--charcoal);
  font-weight: 500;
}

h2 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2.center { text-align: center; }

.center { text-align: center; }
.lead {
  font-size: 1.35rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--charcoal);
  max-width: 640px;
  margin: 0 auto 20px;
}
.body-copy {
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 16px;
}
.body-copy.small { font-size: 0.92rem; opacity: 0.85; }
.accent-line { color: var(--rose-dark); font-style: italic; }

.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-large { padding: 18px 52px; font-size: 1.1rem; }

/* ============ HEADER ============ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 249, 245, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 118, 0.2);
  transition: transform 0.3s ease;
}
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.logo span { color: var(--rose-dark); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--rose-dark); }
.nav-cta {
  background: var(--rose);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--rose-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 140px 6vw 80px;
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(232, 220, 195, 0.4), transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}
.hero-content { max-width: 560px; z-index: 2; }
.hero .eyebrow { text-align: left; }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-style: italic;
  margin: 8px 0 20px;
  letter-spacing: 0.01em;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--charcoal-soft);
  max-width: 480px;
  margin: 0 0 36px;
}
.hero-image {
  z-index: 2;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  border: 6px solid #fff;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-ornament {
  position: absolute;
  bottom: -100px;
  left: 20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,138,147,0.12), transparent 70%);
  z-index: 1;
}

/* ============ ABOUT ============ */
.about-section { background: var(--ivory); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
  text-align: left;
  max-width: 1100px;
}
.about-text .eyebrow,
.about-text h2 { text-align: left; }
.about-text .lead,
.about-text .body-copy { text-align: left; margin-left: 0; }
.about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  border: 6px solid #fff;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ HOW IT WORKS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.step { text-align: center; }
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  line-height: 46px;
  margin-bottom: 20px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { font-size: 0.98rem; max-width: 260px; margin: 0 auto; }

/* ============ SESSIONS ============ */
.sessions-section { background: var(--ivory); }
.session-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 56px 0 48px;
}
.session-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201, 168, 118, 0.15);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.session-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.session-card.featured {
  background: linear-gradient(160deg, #fff, var(--rose-light) 220%);
  border-color: var(--rose);
}
.session-badge {
  position: absolute;
  top: -14px;
  right: 32px;
  background: var(--rose-dark);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.session-card h3 { font-size: 1.6rem; margin-bottom: 6px; }
.session-meta {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--rose-dark);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.session-desc { margin-bottom: 16px; font-size: 1rem; }
.session-add {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--charcoal-soft);
  border-top: 1px solid var(--gold-light);
  padding-top: 14px;
}

.locals-rate {
  text-align: center;
  background: var(--gold-light);
  border-radius: 20px;
  padding: 36px;
}
.locals-rate h3 { font-size: 1.4rem; margin-bottom: 10px; }
.locals-rate p { max-width: 500px; margin: 0 auto; }

/* ============ PERFECT FOR ============ */
.perfect-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 14px;
  margin-top: 40px;
}
.perfect-list li {
  background: #fff;
  border: 1px solid var(--rose-light);
  color: var(--charcoal);
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.95rem;
}

/* ============ GOOD TO KNOW ============ */
.know-section { background: var(--ivory); }
.know-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.know-item {
  padding: 30px;
  border-left: 2px solid var(--gold);
}
.know-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.know-item p { font-size: 0.98rem; }

/* ============ SERVICE AREA ============ */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
}
.area-tags span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose-dark);
  font-size: 1rem;
  padding: 8px 4px;
}
.area-tags span::after { content: '·'; margin-left: 12px; color: var(--gold); }
.area-tags span:last-child::after { content: ''; }

/* ============ BOOK ============ */
.book-section {
  background: linear-gradient(180deg, var(--ivory), var(--rose-light) 180%);
  text-align: center;
}
.book-phone {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-top: 24px;
}
.ig-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--rose-dark);
  border-bottom: 1px solid var(--rose-dark);
  padding-bottom: 2px;
}

/* ============ FOOTER ============ */
.footer {
  text-align: center;
  padding: 56px 24px 40px;
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer p { font-size: 0.9rem; margin-bottom: 6px; }
.footer-copy { opacity: 0.6; margin-top: 14px; font-size: 0.8rem; }

/* ============ ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 130px 24px 60px;
    gap: 48px;
  }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero .eyebrow { text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-image { max-width: 360px; margin: 0 auto; }

  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-text .eyebrow,
  .about-text h2,
  .about-text .lead,
  .about-text .body-copy { text-align: center; }
  .about-image { max-width: 360px; margin: 0 auto; order: -1; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .session-cards { grid-template-columns: 1fr; }
  .know-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 20px; }
  h2 { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.6rem; }
  .btn { padding: 14px 30px; font-size: 0.95rem; }
  .lead { font-size: 1.15rem; }
}
