/* ---------- Theme tokens ---------- */
:root {
  --color-bg: #fdf7f6;
  --color-bg-alt: #ffffff;
  --color-surface: #ffffff;
  --color-text: #2b1f2b;
  --color-text-muted: #6b5b66;
  --color-border: rgba(43, 31, 43, 0.1);

  --color-purple: #6c2b6d;
  --color-purple-dark: #4f1f4f;
  --color-red: #c9384c;
  --color-red-dark: #a92c3e;

  --color-purple-soft: rgba(108, 43, 109, 0.08);
  --color-red-soft: rgba(201, 56, 76, 0.1);

  --shadow-sm: 0 2px 8px rgba(43, 31, 43, 0.06);
  --shadow-md: 0 10px 30px rgba(43, 31, 43, 0.1);

  --radius: 16px;
  --radius-sm: 10px;

  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Dark mode: same roles, muted/desaturated accents on a charcoal ground */
:root[data-theme="dark"] {
  --color-bg: #1c171d;
  --color-bg-alt: #241e26;
  --color-surface: #2a232c;
  --color-text: #e8e0e5;
  --color-text-muted: #b1a2ab;
  --color-border: rgba(255, 255, 255, 0.08);

  --color-purple: #a480a3;
  --color-purple-dark: #8a6a8c;
  --color-red: #b97783;
  --color-red-dark: #a5636f;

  --color-purple-soft: rgba(164, 128, 163, 0.14);
  --color-red-soft: rgba(185, 119, 131, 0.14);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --color-bg: #1c171d;
    --color-bg-alt: #241e26;
    --color-surface: #2a232c;
    --color-text: #e8e0e5;
    --color-text-muted: #b1a2ab;
    --color-border: rgba(255, 255, 255, 0.08);

    --color-purple: #a480a3;
    --color-purple-dark: #8a6a8c;
    --color-red: #b97783;
    --color-red-dark: #a5636f;

    --color-purple-soft: rgba(164, 128, 163, 0.14);
    --color-red-soft: rgba(185, 119, 131, 0.14);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s ease, color 0.25s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-alt { background: var(--color-bg-alt); }
.section-lead {
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.placeholder-note {
  color: var(--color-red-dark);
  font-style: italic;
  opacity: 0.85;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-purple);
}

.nav {
  display: flex;
  gap: 2.25rem;
}

.nav a {
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 0.25rem 0;
}

.nav a:hover { color: var(--color-purple); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-purple);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.theme-toggle:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.theme-toggle .icon { width: 20px; height: 20px; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--color-text);
  border-radius: 2px;
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--color-red);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  border: 1.5px solid var(--color-purple);
  color: var(--color-purple);
}

.btn-ghost:hover {
  background: var(--color-purple-soft);
}

/* ---------- Hero ---------- */
.hero { padding: 5rem 0 4rem; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-purple);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: center; }

.monogram {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--color-purple), var(--color-red));
  box-shadow: var(--shadow-md);
}

/* ---------- About ---------- */
.about-inner { max-width: 720px; }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.badge {
  background: var(--color-purple-soft);
  color: var(--color-purple);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---------- Cards / Services ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 720px;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-active { border-color: var(--color-red); }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red-soft);
  color: var(--color-red);
  margin-bottom: 1rem;
}

.card-icon svg { width: 24px; height: 24px; }

.status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.status-active { background: var(--color-red-soft); color: var(--color-red-dark); }
.status-soon { background: var(--color-purple-soft); color: var(--color-purple); }

.card-list li {
  color: var(--color-text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px dashed var(--color-border);
}

.card-list li:last-child { border-bottom: none; }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 1rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-purple-soft);
  color: var(--color-purple);
  margin-bottom: 1rem;
}

.feature-icon svg { width: 22px; height: 22px; }

.feature p { color: var(--color-text-muted); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-inner { max-width: 640px; }

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 0;
}

.contact-link svg {
  width: 22px;
  height: 22px;
  color: var(--color-red);
  flex-shrink: 0;
}

.contact-link:hover { color: var(--color-purple); }
.contact-link:hover svg { color: var(--color-purple); }

.contact-note { padding-top: 0.5rem; border-top: 1px solid var(--color-border); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 2rem 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--color-border);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .monogram { width: 160px; height: 160px; font-size: 3.5rem; }
  .card-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav.is-open { max-height: 260px; }

  .nav a {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--color-border);
  }

  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}
