/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #2d2235;
  background: #fdf9f7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Skip Link ─── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #7b5ea7; color: #fff; padding: 8px 16px;
  border-radius: 0 0 8px 8px; z-index: 9999; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 800; line-height: 1.15; }
.accent { color: #c4783a; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 60px; font-weight: 600;
  font-size: 0.95rem; transition: all 0.3s ease; border: none; cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, #9b7ab8, #c49ac8);
  color: #fff; box-shadow: 0 4px 20px rgba(155, 122, 184, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(155, 122, 184, 0.5);
}
.btn--ghost {
  background: rgba(255,255,255,0.2); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5); backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.35); }
.btn--full { width: 100%; justify-content: center; }

/* ─── Section Tag ─── */
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #9b7ab8; margin-bottom: 12px;
  background: rgba(155, 122, 184, 0.1); padding: 6px 14px;
  border-radius: 30px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #2d2235; margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem; color: #6b5b76; max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* ─── Navigation ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253, 249, 247, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(155, 122, 184, 0.1);
  transition: box-shadow 0.3s, background 0.3s;
}
.nav.scrolled {
  background: rgba(253, 249, 247, 0.95);
  box-shadow: 0 2px 30px rgba(155, 122, 184, 0.1);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 72px; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo { width: 36px; height: 36px; flex-shrink: 0; }
.nav__name { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.15rem; color: #2d2235; }
.nav__menu {
  display: flex; align-items: center; gap: 32px; margin-left: auto;
}
.nav__link {
  font-size: 0.9rem; font-weight: 500; color: #5a4666;
  position: relative; transition: color 0.2s;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: #9b7ab8;
  transition: width 0.3s;
}
.nav__link:hover { color: #9b7ab8; }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: #c4783a;
  background: rgba(196, 120, 58, 0.1); padding: 8px 16px;
  border-radius: 30px; transition: background 0.2s;
}
.nav__cta:hover { background: rgba(196, 120, 58, 0.2); }
.nav__cta svg { width: 16px; height: 16px; }
.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav__bar {
  display: block; width: 24px; height: 2px; background: #5a4666;
  border-radius: 2px; transition: all 0.3s;
}

/* ─── Hero ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e8d5f5 0%, #f5e6d0 40%, #fde8c8 70%, #e8d5f5 100%);
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #c9a8e0, transparent 70%);
  top: -10%; left: -10%;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #f0c987, transparent 70%);
  bottom: -5%; right: -5%;
  animation-delay: -3s;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #a8c8e8, transparent 70%);
  top: 40%; left: 60%;
  animation-delay: -5s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero__content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; padding: 120px 24px 80px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.6); backdrop-filter: blur(8px);
  padding: 8px 20px; border-radius: 40px;
  font-size: 0.8rem; font-weight: 600; color: #7b5ea7;
  margin-bottom: 28px; border: 1px solid rgba(155, 122, 184, 0.2);
}
.hero__badge svg { width: 14px; height: 14px; }
.hero__title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: #2d2235; margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__title--accent {
  background: linear-gradient(135deg, #9b7ab8, #c4783a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #5a4666; max-width: 580px; margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero__trust {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
}
.hero__trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500; color: #5a4666;
}
.hero__trust-item svg { width: 18px; height: 18px; color: #9b7ab8; }
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #7b5ea7; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.hero__scroll span {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, #7b5ea7, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── Services ─── */
.services { padding: 100px 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  border: 1px solid rgba(155, 122, 184, 0.1);
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(155, 122, 184, 0.15);
  border-color: rgba(155, 122, 184, 0.25);
}
.card--service--featured {
  background: linear-gradient(135deg, #f5eef8, #fdf4e8);
  border-color: rgba(155, 122, 184, 0.2);
}
.card__badge {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, #9b7ab8, #c4783a);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; text-transform: uppercase;
  letter-spacing: 0.08em;
}
.card__icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(155,122,184,0.12), rgba(196,120,58,0.1));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 28px; height: 28px; color: #9b7ab8; }
.card__title { font-size: 1.3rem; margin-bottom: 10px; color: #2d2235; }
.card__body { font-size: 0.95rem; color: #6b5b76; margin-bottom: 20px; line-height: 1.7; }
.card__list { display: flex; flex-direction: column; gap: 8px; }
.card__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: #5a4666;
}
.card__list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, #9b7ab8, #c4783a); flex-shrink: 0;
}

/* ─── About ─── */
.about { padding: 100px 0; background: linear-gradient(180deg, #fdf9f7, #f7f0f8); }
.about__layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.about__images { position: relative; }
.about__img-main {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(155, 122, 184, 0.2);
}
.about__img-main img { width: 100%; height: 100%; object-fit: cover; }
.about__img-stack {
  position: absolute; bottom: -40px; right: -30px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 16px;
}
.about__img-stack img {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(155, 122, 184, 0.25);
  border: 4px solid #fff;
}
.about__stat {
  background: #fff; border-radius: 16px; padding: 16px 24px;
  box-shadow: 0 8px 30px rgba(155, 122, 184, 0.15);
  display: flex; flex-direction: column; align-items: center;
}
.about__stat-num {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  font-weight: 800; color: #9b7ab8;
}
.about__stat-label { font-size: 0.75rem; color: #6b5b76; text-transform: uppercase; letter-spacing: 0.1em; }
.about__content { max-width: 480px; }
.about__content .section-title { text-align: left; }
.about__text { color: #6b5b76; margin-bottom: 16px; font-size: 1.02rem; }
.about__features { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 36px; }
.about__feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: #5a4666; font-weight: 500;
}
.about__feature svg { width: 20px; height: 20px; color: #9b7ab8; flex-shrink: 0; }

/* ─── Gallery ─── */
.gallery { padding: 100px 0; }
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery__item {
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, #f0e4f5, #fde8c8);
}
.gallery__item--wide { grid-column: 1 / -1; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.05); }

/* ─── Testimonials ─── */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5eef8 0%, #fdf4e8 100%);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
  border-radius: 20px; padding: 36px 28px;
  border: 1px solid rgba(155, 122, 184, 0.12);
  transition: all 0.3s;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(155, 122, 184, 0.12);
}
.testimonial__quote { width: 32px; height: 32px; color: #c9a8e0; margin-bottom: 16px; }
.testimonial__text {
  font-size: 1rem; color: #5a4666; line-height: 1.75;
  margin-bottom: 24px; font-style: italic;
}
.testimonial__author { display: flex; flex-direction: column; gap: 2px; }
.testimonial__name { font-weight: 700; font-size: 0.95rem; color: #2d2235; }
.testimonial__location { font-size: 0.8rem; color: #9b7ab8; }

/* ─── Contact ─── */
.contact { padding: 100px 0; }
.contact__layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.contact__info .section-title { text-align: left; }
.contact__desc { color: #6b5b76; margin-bottom: 36px; font-size: 1.02rem; }
.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact__detail { display: flex; gap: 16px; }
.contact__detail dt {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(155,122,184,0.12), rgba(196,120,58,0.08));
  display: flex; align-items: center; justify-content: center;
}
.contact__detail dt svg { width: 22px; height: 22px; color: #9b7ab8; }
.contact__detail dd { font-size: 0.95rem; color: #5a4666; line-height: 1.7; }
.contact__detail a { color: #9b7ab8; transition: color 0.2s; }
.contact__detail a:hover { color: #7b5ea7; }
.contact__form-wrap {
  background: #fff; border-radius: 24px; padding: 40px 32px;
  border: 1px solid rgba(155, 122, 184, 0.1);
  box-shadow: 0 12px 50px rgba(155, 122, 184, 0.08);
}
.contact__form-title {
  font-size: 1.5rem; margin-bottom: 28px; color: #2d2235;
}
.form__group { margin-bottom: 20px; }
.form__label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: #5a4666; margin-bottom: 6px; text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form__input {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 1.5px solid rgba(155, 122, 184, 0.2);
  background: rgba(253, 249, 247, 0.8); color: #2d2235;
  font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form__input:focus {
  border-color: #9b7ab8;
  box-shadow: 0 0 0 3px rgba(155, 122, 184, 0.12);
}
.form__input::placeholder { color: #b8a4c4; }
.form__select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239b7ab8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px;
}
.form__textarea { resize: vertical; min-height: 100px; }
.form__success {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px; padding: 16px 20px; border-radius: 12px;
  background: rgba(155, 122, 184, 0.08); color: #7b5ea7;
  font-weight: 500; font-size: 0.9rem;
}
.form__success svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ─── Footer ─── */
.footer {
  background: #2d2235; color: rgba(255,255,255,0.7); padding: 64px 0 0;
}
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
}
.footer__logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.footer__logo-icon { width: 36px; height: 36px; }
.footer__logo span {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: 1.15rem; color: #fff;
}
.footer__tagline { font-size: 0.9rem; line-height: 1.6; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__nav a:hover { color: #c9a8e0; }
.footer__contact { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer__contact svg { width: 16px; height: 16px; display: inline; margin-right: 6px; vertical-align: middle; }
.footer__contact a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer__contact a:hover { color: #c9a8e0; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ─── Mobile Menu ─── */
.nav__menu.open {
  display: flex; flex-direction: column;
  position: absolute; top: 72px; left: 0; right: 0;
  background: rgba(253, 249, 247, 0.98); backdrop-filter: blur(16px);
  padding: 24px; gap: 20px;
  border-bottom: 1px solid rgba(155, 122, 184, 0.1);
  box-shadow: 0 12px 40px rgba(155, 122, 184, 0.1);
}
.nav__cta.mobile-hidden { display: none; }

/* ─── Animations ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .about__layout, .contact__layout { grid-template-columns: 1fr; gap: 40px; }
  .about__images { max-width: 480px; }
  .about__img-stack { right: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu.open { display: flex; }
  .nav__menu.open + .nav__cta { display: flex; }
  .hero__title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__trust { flex-direction: column; align-items: center; gap: 12px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: 1; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav__inner { padding: 0 16px; }
  .services, .about, .gallery, .testimonials, .contact { padding: 72px 0; }
  .card { padding: 28px 22px; }
  .contact__form-wrap { padding: 28px 20px; }
}
