/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #1a1a2e;
  background: #FFFBF5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: #5B2C6F; color: #fff; padding: .5rem 1rem;
  border-radius: 0 0 .5rem .5rem; z-index: 9999;
  font-size: .875rem;
}
.skip-link:focus { top: 0; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #F59E0B;
  margin-bottom: .75rem;
}
.section-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: #5B2C6F;
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1.1rem;
  color: #4a4a6a;
  max-width: 600px;
  line-height: 1.8;
}
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #F59E0B;
  color: #1a1a2e;
}
.btn-primary:hover {
  background: #D97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,158,11,.35);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}
.btn-outline {
  background: transparent;
  color: #5B2C6F;
  border: 2px solid #5B2C6F;
}
.btn-outline:hover {
  background: #5B2C6F;
  color: #fff;
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,251,245,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(91,44,111,.08);
  transition: box-shadow .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(91,44,111,.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #5B2C6F;
}
.nav-logo-text { display: none; }
@media (min-width: 640px) {
  .nav-logo-text { display: block; }
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 1rem;
}
.nav-links a {
  font-size: .9375rem;
  font-weight: 500;
  color: #4a4a6a;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #F59E0B;
  transition: width .3s;
}
.nav-links a:hover { color: #5B2C6F; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: none;
  padding: .625rem 1.5rem;
  background: #5B2C6F;
  color: #fff;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 600;
  transition: background .3s, transform .2s;
}
.nav-cta:hover { background: #7B2CB0; transform: translateY(-1px); }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #5B2C6F;
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: rgba(255,251,245,.98);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  gap: 1rem;
  border-bottom: 1px solid rgba(91,44,111,.08);
  box-shadow: 0 10px 40px rgba(91,44,111,.1);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5B2C6F 0%, #7B2CB0 30%, #9D4EDD 60%, #C77DFF 85%, #F59E0B 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(91,44,111,.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(245,158,11,.3) 0%, transparent 50%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: #F59E0B;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .5; transform: scaleY(.6); }
}

/* ── SECTIONS ── */
.section {
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .section { padding: 8rem 0; }
}

/* ── ABOUT ── */
.about { background: #FFFBF5; }
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
.about-images {
  position: relative;
  min-height: 500px;
}
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(91,44,111,.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -2rem; right: -1rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(91,44,111,.2);
  border: 5px solid #FFFBF5;
  width: 55%;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-text { max-width: 520px; }
.about-text p {
  color: #4a4a6a;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(91,44,111,.1);
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #5B2C6F;
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .8125rem;
  color: #7a7a9a;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

/* ── SERVICES ── */
.services { background: #FFFBF5; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.25rem;
  border: 1px solid rgba(91,44,111,.06);
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5B2C6F, #F59E0B);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(91,44,111,.12);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(91,44,111,.08), rgba(91,44,111,.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #5B2C6F;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 1.25rem;
  color: #5B2C6F;
  margin-bottom: .75rem;
}
.service-card p {
  color: #5a5a7a;
  font-size: .9375rem;
  line-height: 1.7;
}

/* ── WHY US ── */
.why { background: #FFFBF5; }
.why-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
.why-content { max-width: 540px; }
.why-content .section-sub { margin-bottom: 2rem; }
.why-list { display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.why-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-list svg { flex-shrink: 0; margin-top: 2px; }
.why-list strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: #5B2C6F;
  margin-bottom: .25rem;
}
.why-list span {
  color: #5a5a7a;
  font-size: .9375rem;
  line-height: 1.7;
}
.why-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(91,44,111,.15);
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: linear-gradient(135deg, #5B2C6F 0%, #7B2CB0 100%);
  color: #fff;
  overflow: hidden;
}
.testimonials .section-eyebrow { color: #F59E0B; }
.testimonials .section-headline { color: #fff; }
.testimonials .section-header { margin-bottom: 3rem; }
.testimonials-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.testimonials-track {
  display: flex;
  transition: transform .5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 0 1rem;
}
.testimonial-quote {
  width: 40px; height: 40px;
  margin-bottom: 1.5rem;
  opacity: .8;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,.95);
  margin-bottom: 2rem;
}
.testimonial-author {
  font-size: .9375rem;
  color: #F59E0B;
  font-weight: 500;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  z-index: 2;
}
.slider-btn:hover { background: rgba(255,255,255,.25); }
.slider-prev { left: -2rem; }
.slider-next { right: -2rem; }
@media (max-width: 767px) {
  .slider-prev { left: .5rem; }
  .slider-next { right: .5rem; }
}
@media (min-width: 768px) {
  .testimonials { text-align: center; }
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1f4e 50%, #5B2C6F 100%);
}
.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F59E0B' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}
.cta-eyebrow { color: #F59E0B; }
.cta-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #fff;
  margin-bottom: 1.25rem;
}
.cta-text {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── CONTACT ── */
.contact { background: #FFFBF5; }
.contact-grid {
  display: grid;
  gap: 4rem;
}
.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-item dt {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 600;
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #5B2C6F;
  margin-bottom: .375rem;
}
.contact-item dd {
  color: #4a4a6a;
  font-size: 1rem;
  line-height: 1.7;
  padding-left: 2.25rem;
}
.contact-item a {
  color: #5B2C6F;
  transition: color .2s;
  border-bottom: 1px solid transparent;
}
.contact-item a:hover { color: #F59E0B; border-color: #F59E0B; }
.contact-map {
  margin-top: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(91,44,111,.1);
  border: 3px solid rgba(91,44,111,.06);
}
.contact-map iframe {
  width: 100%;
  height: 250px;
  border: none;
  display: block;
}
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(91,44,111,.08);
  border: 1px solid rgba(91,44,111,.06);
}
.contact-form h3 {
  font-size: 1.5rem;
  color: #5B2C6F;
  margin-bottom: .5rem;
}
.form-note {
  color: #7a7a9a;
  font-size: .875rem;
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: #5B2C6F;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .875rem 1rem;
  border: 1.5px solid rgba(91,44,111,.15);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: #1a1a2e;
  background: #FFFBF5;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #5B2C6F;
  box-shadow: 0 0 0 3px rgba(91,44,111,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b0c0; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
  padding: 1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  color: #166534;
  font-weight: 500;
}
.form-success svg { flex-shrink: 0; }
@media (max-width: 767px) {
  .form-row { grid-template-columns: 1fr; }
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* ── FOOTER ── */
.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand { max-width: 320px; }
.footer-brand .nav-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: .9375rem; line-height: 1.7; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #F59E0B;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-col a {
  font-size: .9375rem;
  transition: color .2s;
}
.footer-col a:hover { color: #F59E0B; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.5fr 2fr; }
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
