/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --burgundy:    #841152;
  --burgundy-dk: #621040;
  --burgundy-lt: #a8256e;
  --cream:       #fdf8f4;
  --warm-white:  #fff9f5;
  --text:        #2c2020;
  --text-mid:    #5a4040;
  --text-light:  #9a7878;
  --gold:        #c9a96e;
  --gold-lt:     #e8d5b0;
  --border:      #ecddd5;
  --shadow:      rgba(132, 17, 82, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}
.btn--primary:hover {
  background: var(--burgundy-dk);
  border-color: var(--burgundy-dk);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--burgundy);
  border-color: #fff;
}
.btn--light:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 249, 245, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
}

.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.03em;
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--burgundy); }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--burgundy);
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(160deg, #5a0a35 0%, #841152 45%, #a8256e 80%, #c06090 100%);
  overflow: hidden;
  padding: 10rem 2rem 4rem;
  text-align: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
}

.hero__lotus {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 340px;
  opacity: 0.2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== NOTICE ===== */
.notice {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--burgundy);
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }

.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1rem;
}

.section__intro {
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ===== ABOUT ===== */
.about { background: var(--warm-white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__text p {
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

.about__text .btn { margin-top: 0.5rem; }

.about__img-frame {
  position: relative;
}

.about__img-placeholder {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow);
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--burgundy);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 8px 24px var(--shadow);
}
.about__badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}
.about__badge span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ===== SERVICES ===== */
.services { background: var(--cream); text-align: center; }
.services .section__intro { margin-left: auto; margin-right: auto; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 12px 40px var(--shadow);
  transform: translateY(-3px);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--warm-white);
  text-align: center;
}
.pricing .section__intro { margin-left: auto; margin-right: auto; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: 0 12px 40px var(--shadow); }

.pricing-card--featured {
  border-color: var(--burgundy);
  box-shadow: 0 12px 40px var(--shadow);
  transform: scale(1.04);
}

.pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--burgundy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 4px 4px;
}

.pricing-card__duration {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 1rem;
}

.pricing-card__desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing__note {
  margin-top: 2.5rem;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.pricing__note a {
  color: var(--burgundy);
  text-decoration: underline;
}

/* ===== FEATURES ===== */
.features { background: var(--cream); text-align: center; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  padding: 2rem 1rem;
}

.feature__icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.feature h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--burgundy);
  text-align: center;
  color: #fff;
}

.testimonials .section__tag { color: var(--gold); }
.testimonials .section__title { color: #fff; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 2rem;
  text-align: left;
}

.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}

.testimonial footer {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== ETIQUETTE ===== */
.etiquette { background: var(--warm-white); }

.etiquette__inner { text-align: center; }

.etiquette__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.etiquette__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
}

.etiquette__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.etiquette__item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.etiquette__item p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--burgundy-dk) 0%, var(--burgundy) 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner__inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-banner__inner p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a0c0c;
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer__hours { font-size: 0.88rem; }

.footer__links h4,
.footer__contact h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: #fff; }

.footer__contact p {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.footer__bottom {
  text-align: center;
  padding: 1.25rem 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { order: -1; }
  .about__badge { left: 1rem; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .pricing-card--featured { transform: scale(1); }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__hamburger { display: block; }
  .hero { min-height: 90vh; }
  .services__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .etiquette__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__lotus { width: 200px; }
}
