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

:root {
  --plum:       #6B2F6B;
  --plum-dark:  #4A1F4A;
  --plum-light: #8B458B;
  --amber:      #D4920B;
  --amber-light:#F5C842;
  --amber-glow: #FFD166;
  --bg:         #FAFAF8;
  --bg-warm:    #F5F0EB;
  --text:       #1A1A1A;
  --text-muted: #6B6B6B;
  --text-light: #999;
  --white:      #FFFFFF;
  --line:       rgba(107, 47, 107, 0.10);
  --line-strong:rgba(107, 47, 107, 0.20);
  --radius:     12px;
  --radius-sm:  8px;
  --font-body:  'Inter', -apple-system, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(107, 47, 107, 0.06); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--plum);
  letter-spacing: -0.01em;
}
.nav-logo-icon { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--plum); }

.nav-cta {
  background: var(--plum) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--plum-dark) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6B2F6B 0%, #8B458B 30%, #D4920B 70%, #F5C842 100%);
  opacity: 0.92;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-accent {
  color: var(--amber-glow);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--amber);
  color: var(--plum-dark);
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.trust-item svg { color: var(--amber-glow); }

.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 6/7;
  box-shadow: 0 32px 64px rgba(0,0,0,0.25);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  pointer-events: none;
}

/* ─── Section Shared ─── */
section { padding: 110px 0; }
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--plum);
}

/* ─── Services ─── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--bg);
  padding: 40px 32px;
  transition: all 0.35s ease;
  border: 1px solid transparent;
}
.service-card:hover {
  background: var(--white);
  border-color: var(--line-strong);
  box-shadow: 0 12px 40px rgba(107, 47, 107, 0.07);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--plum), var(--plum-light));
  color: var(--amber-glow);
  margin-bottom: 22px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── About ─── */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 7/6;
  box-shadow: 0 20px 50px rgba(107, 47, 107, 0.10);
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 300;
}
.about-content p:last-of-type { margin-bottom: 36px; }

.about-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}
.stat { flex: 1; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line-strong);
}

/* ─── Why Us ─── */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.why-item {
  background: var(--bg);
  padding: 48px 40px;
  transition: all 0.3s ease;
}
.why-item:hover { background: var(--white); box-shadow: 0 8px 32px rgba(107,47,107,0.06); }
.why-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--plum);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.why-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── Contact ─── */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-details { margin: 32px 0; }
.contact-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--plum), var(--plum-light));
  color: var(--amber-glow);
}
.contact-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 3px;
  font-weight: 500;
}
.contact-value {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-link { color: var(--plum); transition: color 0.2s; }
.contact-link:hover { color: var(--plum-dark); }

.contact-hours {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.contact-hours h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.contact-hours p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 48px rgba(107,47,107,0.10);
  min-height: 320px;
}
.contact-map iframe { width: 100%; height: 100%; }

/* ─── Footer ─── */
.footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  padding: 40px 0;
  align-items: start;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--amber-glow);
  display: block;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--amber-glow); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact a {
  font-size: 0.95rem;
  color: var(--amber);
  font-weight: 400;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--amber-glow); }
.footer-contact span { font-size: 0.82rem; font-weight: 300; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

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

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { max-width: 480px; aspect-ratio: 4/3; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 520px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(250,250,248,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero-image { display: none; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-trust { gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; align-items: flex-start; }
  .stat-divider { width: 40px; height: 1px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; width: 100%; }
  .service-card { padding: 28px 24px; }
  .why-item { padding: 32px 24px; }
}
