/* ── 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, -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #1a1020;
  background: #faf8f6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Utility ─────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; left: -999px; top: 0; background: #6B3A6E; color: #fff; padding: 8px 16px; z-index: 200; font-size: .875rem; }
.skip-link:focus { left: 0; }

/* ── Noise Overlay ───────────────────────────────── */
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ── Navigation ──────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 248, 246, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 58, 110, .08);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 1px 24px rgba(107, 58, 110, .07); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand-mark {
  width: 32px; height: 32px;
  background: #6B3A6E;
  color: #F5C563;
  font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
}
.nav-brand-text { font-weight: 500; font-size: .9375rem; letter-spacing: -.01em; color: #1a1020; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu ul { display: flex; gap: 28px; }
.nav-menu a { font-size: .875rem; font-weight: 400; letter-spacing: .01em; color: #3d2a42; transition: color .2s; }
.nav-menu a:hover { color: #6B3A6E; }
.nav-cta {
  display: flex; align-items: center; gap: 6px;
  font-size: .8125rem; font-weight: 500;
  color: #6B3A6E;
  border: 1px solid rgba(107, 58, 110, .25);
  padding: 7px 14px; border-radius: 100px;
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: #6B3A6E; color: #F5C563; border-color: #6B3A6E; }

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle-line { width: 20px; height: 1.5px; background: #1a1020; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 500; font-size: .9375rem;
  padding: 12px 28px; border-radius: 100px;
  transition: background .25s, color .25s, transform .15s, box-shadow .25s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: #6B3A6E; color: #fff;
  box-shadow: 0 4px 20px rgba(107, 58, 110, .25);
}
.btn-primary:hover { background: #5a2e5c; box-shadow: 0 6px 28px rgba(107, 58, 110, .35); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.btn-outline {
  background: transparent; color: #6B3A6E;
  border: 1.5px solid rgba(107, 58, 110, .3);
}
.btn-outline:hover { background: #6B3A6E; color: #fff; border-color: #6B3A6E; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── Section Shared ──────────────────────────────── */
.section-label {
  font-size: .75rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: #6B3A6E; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2; letter-spacing: -.02em;
  color: #1a1020; margin-bottom: 16px;
}
.section-desc { font-size: 1.0625rem; color: #5a4560; max-width: 560px; }
.section-header { margin-bottom: 56px; }

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero-gradient {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #2D1530 0%, #6B3A6E 35%, #9B59B6 60%, #6B3A6E 80%, #2D1530 100%);
}
.hero-gradient::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(245,197,99,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(107,58,110,.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(155,89,182,.3) 0%, transparent 60%);
}
/* Subtle animated grain */
.hero-gradient::after {
  content: ''; position: absolute; inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}
.hero-content {
  position: relative; z-index: 1;
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
}
.hero-eyebrow {
  font-size: .75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(245,197,99,.85); margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1.15; letter-spacing: -.025em;
  color: #fff; margin-bottom: 24px; max-width: 820px;
}
.hero-headline em { font-style: italic; color: #F5C563; }
.hero-sub {
  font-size: 1.125rem; color: rgba(255,255,255,.7);
  max-width: 540px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-divider {
  height: 1px; margin: 0 auto; max-width: 1200px; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(107,58,110,.2), transparent);
}

/* ── Services ────────────────────────────────────── */
.services { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff;
  border: 1px solid rgba(107, 58, 110, .08);
  border-radius: 16px; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(107, 58, 110, .1); }
.service-card-img { height: 220px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 32px; }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(107, 58, 110, .08);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: #6B3A6E; margin-bottom: 20px;
}
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: 1.375rem;
  color: #1a1020; margin-bottom: 12px; letter-spacing: -.01em;
}
.service-card-desc { font-size: .9375rem; color: #5a4560; margin-bottom: 20px; line-height: 1.7; }
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  position: relative; padding-left: 16px;
  font-size: .875rem; color: #3d2a42;
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%;
  background: #F5C563;
}

/* ── About ───────────────────────────────────────── */
.about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; min-height: 560px; }
.about-img-main {
  width: 100%; height: 520px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(107, 58, 110, .12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -40px; right: -40px;
  width: 240px; height: 180px;
  border-radius: 12px; overflow: hidden;
  border: 4px solid #faf8f6;
  box-shadow: 0 12px 40px rgba(107, 58, 110, .15);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute; top: -24px; left: -24px;
  background: #6B3A6E; color: #fff;
  padding: 20px 24px; border-radius: 12px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  box-shadow: 0 12px 32px rgba(107, 58, 110, .3);
}
.about-accent-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 500; color: #F5C563; line-height: 1;
}
.about-accent-label { font-size: .8125rem; color: rgba(255,255,255,.8); line-height: 1.4; }
.about-content { max-width: 480px; }
.about-text { font-size: 1rem; color: #5a4560; margin-bottom: 16px; line-height: 1.8; }
.about-stats {
  display: flex; align-items: center; gap: 0;
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(107, 58, 110, .1);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 500; color: #6B3A6E; line-height: 1;
}
.stat-label { font-size: .75rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: #5a4560; }
.stat-divider { flex: 1; height: 1px; background: rgba(107, 58, 110, .12); margin: 0 24px; }

/* ── Why ─────────────────────────────────────────── */
.why { padding: 100px 0; background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  padding: 40px;
  border: 1px solid rgba(107, 58, 110, .08);
  border-radius: 16px;
  transition: border-color .25s, background .25s;
}
.why-card:hover { border-color: rgba(107, 58, 110, .2); background: rgba(107, 58, 110, .02); }
.why-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 500; color: rgba(107, 58, 110, .12);
  line-height: 1; margin-bottom: 16px;
}
.why-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: 1.25rem;
  color: #1a1020; margin-bottom: 12px; letter-spacing: -.01em;
}
.why-card-desc { font-size: .9375rem; color: #5a4560; line-height: 1.75; }

/* ── CTA Banner ──────────────────────────────────── */
.cta-banner { padding: 80px 0; }
.cta-inner {
  background: linear-gradient(135deg, #2D1530 0%, #6B3A6E 50%, #9B59B6 100%);
  border-radius: 24px; padding: 72px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(245,197,99,.1) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff; letter-spacing: -.02em; margin-bottom: 12px;
}
.cta-desc { font-size: 1.0625rem; color: rgba(255,255,255,.7); max-width: 420px; }
.cta-actions { position: relative; z-index: 1; display: flex; gap: 16px; flex-wrap: wrap; }
.cta-actions .btn-outline { border-color: rgba(255,255,255,.3); color: #fff; }
.cta-actions .btn-outline:hover { background: #fff; color: #6B3A6E; border-color: #fff; }

/* ── Contact ─────────────────────────────────────── */
.contact { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-desc { font-size: 1rem; color: #5a4560; margin-bottom: 32px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-details li { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(107, 58, 110, .07);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: #6B3A6E;
}
.contact-details strong { display: block; font-weight: 500; font-size: .875rem; color: #1a1020; margin-bottom: 2px; }
.contact-details span, .contact-details a { font-size: .9375rem; color: #5a4560; }
.contact-details a:hover { color: #6B3A6E; }

/* Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(107, 58, 110, .08);
  border-radius: 16px; padding: 40px;
  box-shadow: 0 8px 40px rgba(107, 58, 110, .06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: .8125rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  color: #3d2a42;
}
.form-group input, .form-group select, .form-group textarea {
  background: #faf8f6;
  border: 1px solid rgba(107, 58, 110, .15);
  border-radius: 10px; padding: 12px 16px;
  font-size: .9375rem; color: #1a1020;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #6B3A6E;
  box-shadow: 0 0 0 3px rgba(107, 58, 110, .1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #a89bb0; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; cursor: pointer; }
.form-success {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 18px;
  background: rgba(107, 58, 110, .06);
  border: 1px solid rgba(107, 58, 110, .12);
  border-radius: 10px;
  font-size: .9375rem; color: #6B3A6E; font-weight: 500;
}
.form-success svg { flex-shrink: 0; }

/* ── Footer ──────────────────────────────────────── */
.footer { padding: 64px 0 0; background: #1a1020; color: rgba(255,255,255,.6); }
.footer-inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand .nav-brand-mark { width: 40px; height: 40px; font-size: 1.125rem; }
.footer-name { font-weight: 500; font-size: 1rem; color: #fff; }
.footer-tagline { font-size: .8125rem; color: rgba(255,255,255,.4); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9375rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: #F5C563; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: .875rem; }
.footer-contact a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-contact a:hover { color: #F5C563; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-size: .8125rem; color: rgba(255,255,255,.3);
}

/* ── Scroll Reveal (progressive enhancement) ────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .cta-inner { padding: 56px 40px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(250, 248, 246, .98);
    backdrop-filter: blur(20px);
    flex-direction: column; justify-content: flex-start;
    padding: 40px 24px; gap: 0;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.22,1,.36,1);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu ul { flex-direction: column; gap: 0; }
  .nav-menu li { border-bottom: 1px solid rgba(107, 58, 110, .07); }
  .nav-menu a { display: block; padding: 16px 0; font-size: 1.125rem; }
  .nav-cta { margin-top: 24px; justify-content: center; font-size: 1rem; }
  .nav-toggle { display: flex; }

  .hero-content { padding: 100px 24px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }

  .services { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .about { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-images { min-height: 360px; }
  .about-img-main { height: 360px; }
  .about-img-secondary { width: 180px; height: 135px; bottom: -24px; right: -16px; }
  .about-accent { top: -16px; left: -16px; padding: 14px 18px; }
  .about-accent-number { font-size: 1.5rem; }

  .why { padding: 72px 0; }
  .why-grid { grid-template-columns: 1fr; }

  .cta-banner { padding: 48px 0; }
  .cta-inner { flex-direction: column; text-align: center; padding: 48px 28px; border-radius: 16px; }
  .cta-desc { margin: 0 auto; }
  .cta-actions { justify-content: center; }

  .contact { padding: 72px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 40px; }
  .service-card-body { padding: 24px; }
}
