:root {
  --purple: #7B2FBE;
  --indigo: #3D1F8E;
  --magenta: #E91E63;
  --magenta-dark: #C11350;
  --ink: #1a0d40;
  --bg-light: #f6f3fc;
  --bg-alt: #efe9fb;
  --text: #2a2050;
  --text-muted: #6b6390;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(61, 31, 142, 0.12);
  --shadow-md: 0 12px 32px rgba(61, 31, 142, 0.22);
  --shadow-lg: 0 24px 60px rgba(61, 31, 142, 0.32);
  --grad-purple: linear-gradient(135deg, #7B2FBE 0%, #3D1F8E 100%);
  --grad-tri: linear-gradient(135deg, #7B2FBE 0%, #3D1F8E 60%, #2a0d6e 100%);
  --grad-magenta: linear-gradient(135deg, #E91E63 0%, #C11350 100%);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Karla', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--indigo);
}

p { margin-bottom: 1rem; }

a { color: var(--purple); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--magenta); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 1rem 1.2rem; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 13, 64, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 3px;
  background: var(--grad-magenta);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 70% 100%, 30% 0);
  opacity: 0.7;
}

.nav-bar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo .logo-mark {
  width: 32px; height: 32px;
  background: var(--grad-magenta);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  display: inline-block;
}
.logo .logo-mark + span { color: var(--white); }
.logo b { color: var(--magenta); font-weight: 400; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--magenta);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--white);
}
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
  background: var(--magenta);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: 0.3s var(--ease);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-family: 'Karla', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
  color: var(--white);
}
.btn-primary {
  background: var(--grad-magenta);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(233, 30, 99, 0.5);
  color: var(--white);
  filter: brightness(1.08);
}
.btn-secondary {
  background: var(--grad-purple);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-md);
  color: var(--white);
  filter: brightness(1.1);
}
.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
  color: var(--white);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--grad-tri);
  color: var(--white);
  padding: 6rem 1.5rem 8rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background:
    linear-gradient(135deg, transparent 40%, rgba(233, 30, 99, 0.15) 100%),
    repeating-linear-gradient(60deg, transparent 0 40px, rgba(255,255,255,0.03) 40px 42px);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 30% 50%, 0 0);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--bg-light);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 0);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1.2rem;
}
.hero-content h1 span { color: #f8bbd0; }
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-card {
  background: var(--white);
  color: var(--text);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  margin-left: 2rem;
  transform: translateY(-1rem);
  border-top: 5px solid var(--magenta);
}
.hero-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--indigo);
}
.hero-card p { color: var(--text-muted); margin-bottom: 1.5rem; }
.hero-card .btn { width: 100%; justify-content: center; }

/* ===== SECTIONS ===== */
.section {
  position: relative;
  padding: 5rem 1.5rem;
}
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  text-align: center;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-dark {
  background: var(--grad-tri);
  color: var(--white);
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  padding: 7rem 1.5rem;
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.85); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.8); }

.section-alt {
  background: var(--bg-alt);
}

.section-tri-bg {
  position: relative;
}
.section-tri-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(-45deg, transparent 0 60px, rgba(123, 47, 190, 0.04) 60px 62px);
  pointer-events: none;
  z-index: 0;
}
.section-tri-bg > .section-inner { position: relative; z-index: 1; }

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.card-body p { color: var(--text-muted); margin-bottom: 1.2rem; flex: 1; }
.card-icon {
  width: 56px; height: 56px;
  background: var(--grad-purple);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  font-family: 'Libre Baskerville', serif;
}

/* ===== CONTENT BLOCKS ===== */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.content-block:last-child { margin-bottom: 0; }
.content-block.reverse .content-text { order: 2; }
.content-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.content-text h2 { font-size: 2rem; margin-bottom: 1rem; }
.content-text p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ===== CONTACT / ADDRESS ===== */
.contact-block {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--magenta);
  max-width: 640px;
  margin: 0 auto;
}
.contact-block h2 { margin-bottom: 1.5rem; }
address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text);
}
address strong {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  color: var(--indigo);
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
address a { color: var(--purple); }
.contact-info-line {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--bg-alt);
}
.contact-info-line:last-child { border-bottom: none; }
.contact-info-line .label {
  font-weight: 700;
  color: var(--indigo);
  min-width: 100px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 1.5rem