/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum: #5B2C6F;
  --plum-dark: #4A235A;
  --plum-light: #F0E6F6;
  --plum-muted: #E8D8F0;
  --amber: #F59E0B;
  --amber-light: #FEF3C7;
  --amber-dark: #D97706;
  --off-white: #FDF8F4;
  --warm-white: #FFFBF7;
  --text-dark: #1F1027;
  --text-mid: #4A3F52;
  --text-light: #7A6E82;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 2px 8px rgba(91,44,111,0.08);
  --shadow-md: 0 8px 30px rgba(91,44,111,0.12);
  --shadow-lg: 0 16px 60px rgba(91,44,111,0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text-dark);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--plum);
  color: #fff;
  box-shadow: 0 4px 20px rgba(91,44,111,0.3);
}
.btn-primary:hover {
  background: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(91,44,111,0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.9);
  color: var(--plum);
  border: 2px solid var(--plum-muted);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: #fff;
  border-color: var(--plum);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--amber);
  color: var(--text-dark);
  padding: 10px 24px;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--amber-dark); transform: translateY(-1px); }

.btn-light {
  background: #fff;
  color: var(--plum);
  box-shadow: var(--shadow-md);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.btn-full { width: 100%; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,248,244,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--plum-muted);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(253,248,244,0.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--plum);
  font-weight: 400;
}
.logo em { font-style: italic; color: var(--amber-dark); }
.logo-icon { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a:not(.btn) {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--plum); background: var(--plum-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--plum);
  border-radius: 4px;
  transition: var(--transition);
}
.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); }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 120px 0 0;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--plum-light) 50%, var(--amber-light) 100%);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(245,158,11,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(91,44,111,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero-content .eyebrow { margin-bottom: 16px; }

.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 24px;
  color: var(--text-dark);
}
.hero-content h1 em { color: var(--plum); font-style: italic; }

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--plum-muted);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  backdrop-filter: blur(8px);
}

.hero-image { position: relative; }

.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 520/620;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-float {
  position: absolute;
  bottom: -20px;
  left: -40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--off-white);
  aspect-ratio: 1;
  width: 200px;
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }

.hero-wave { position: absolute; bottom: 0; left: 0; width: 100%; line-height: 0; }

/* ── Section Shared ── */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ── Services ── */
.services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--plum-muted);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--plum), var(--amber));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-icon { margin-bottom: 20px; }

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.service-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ── About ── */
.about { background: var(--warm-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images { position: relative; }

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 480/560;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  z-index: -1;
}
.accent-shape {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--amber-light), var(--plum-light));
  border-radius: var(--radius-lg);
  transform: rotate(12deg);
}

.about-content .eyebrow { margin-bottom: 16px; }
.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--plum-muted);
  border-bottom: 1px solid var(--plum-muted);
}

.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.82rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

.about-content .btn { margin-top: 8px; }

/* ── Process ── */
.process { background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%); color: #fff; }
.process .section-header h2, .process .section-header { color: #fff; }
.process .section-header p { color: rgba(255,255,255,0.7); }
.process .eyebrow { color: var(--amber); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.step {
  text-align: center;
  padding: 40px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.step:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--text-dark);
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 10px;
}
.step p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}
.step-connector::before {
  content: '';
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
  border-radius: 2px;
}

/* ── Testimonials ── */
.testimonials { background: var(--off-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--plum-muted);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.quote-mark { position: absolute; top: 20px; right: 24px; opacity: 0.5; }

.testimonial-card p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), var(--amber));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.testimonial-author span { font-size: 0.82rem; color: var(--text-light); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  padding: 80px 0;
}
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}
.cta-inner p { color: rgba(31,16,39,0.7); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact { background: var(--warm-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .eyebrow { margin-bottom: 16px; }
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.contact-info > p { color: var(--text-mid); margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--plum-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 1rem; color: var(--text-dark); }
.contact-item a:hover { color: var(--plum); }

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--plum-muted);
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--plum-muted);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(91,44,111,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--plum-light);
  border-radius: var(--radius-sm);
  margin-top: 16px;
  color: var(--plum-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ── Footer ── */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 64px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo em { color: var(--amber); }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 300px; }

.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.92rem; transition: var(--transition); }
.footer-links a:hover { color: var(--amber); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.footer-contact a { transition: var(--transition); }
.footer-contact a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ── Mobile ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-image { max-width: 480px; margin: 0 auto; }
  .hero-img-float { left: -20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 480px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,248,244,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--plum-muted);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a:not(.btn) { padding: 12px 16px; width: 100%; text-align: center; }
  .nav-links .btn { width: 100%; justify-content: center; }

  .hero { padding: 100px 0 0; min-height: auto; }
  .hero-grid { padding-bottom: 60px; }
  .hero-img-float { display: none; }
  .hero-img-main { aspect-ratio: 4/3; }

  section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 20px; }
  .step-connector { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .about-stats { gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
