/* Base reset and variables */
:root {
  --bg: #0f0c13;
  --bg-alt: #14101a;
  --text: #f6f3ff;
  --muted: #cfc7e6;
  --brand: #662d91;
  --brand-2: #8a47c6;
  --surface: #1b1524;
  --card: #1a1622;
  --success: #2dd4bf;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 800px at 10% -10%, #2c2440 0%, transparent 40%),
              radial-gradient(1000px 700px at 100% 0%, #2a1f3a 0%, transparent 45%),
              var(--bg);
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

a { color: #cbb2f6; text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus { position: static; width: auto; height: auto; padding: 8px 12px; background: var(--brand); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 10; backdrop-filter: saturate(1.2) blur(6px); background: rgba(15,12,19,0.6); border-bottom: 1px solid #271e33; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.header-right { display: flex; align-items: center; gap: 14px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: #fff; }
.brand.small span { font-size: 14px; }
.nav { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover { color: #fff; }

/* Mobile menu toggle */
.menu-toggle { display: none; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 8px; font-weight: 700; background: transparent; border: 1px solid #3a2d4c; color: inherit; cursor: pointer; }

/* Hero */
.hero { padding: 80px 0; background: radial-gradient(1000px 600px at 0% 0%, rgba(102,45,145,0.25), transparent 60%); }
.hero-inner { text-align: center; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin: 0 0 12px; }
.lead { font-size: clamp(1.05rem, 2.1vw, 1.25rem); color: var(--muted); margin: 0 auto 22px; max-width: 850px; }
.cta-group { display: inline-flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
.disclaimer { margin-top: 14px; font-size: 0.9rem; color: #b6a8d4; }

.btn { display: inline-block; border-radius: 10px; padding: 12px 16px; font-weight: 700; border: 1px solid transparent; transition: transform .04s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn.small { padding: 8px 12px; border-radius: 8px; font-size: 0.95rem; }
.btn.primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; }
.btn.ghost { background: transparent; border-color: #3a2d4c; color: #e7defa; }
.btn.secondary { background: #2a2040; color: #f5ecff; border-color: #3a2d4c; }

/* Sections */
.section { padding: 64px 0; }
.section.alt { background: var(--bg-alt); border-top: 1px solid #221a2a; border-bottom: 1px solid #221a2a; }
.section h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin: 0 0 10px; }
.section-intro, .note { color: var(--muted); max-width: 900px; }
.note { margin-top: 14px; font-size: 0.95rem; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 18px; }
.card { background: var(--card); border: 1px solid #2d223b; border-radius: 14px; padding: 18px; box-shadow: 0 0 0 1px rgba(0,0,0,0.2) inset; }
.card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.card p { margin: 0 0 12px; color: var(--muted); }

.plan-list { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 0; margin: 18px 0 0; list-style: none; }
.plan-list li { background: var(--surface); border: 1px solid #2d223b; border-radius: 12px; padding: 12px 14px; }

details { background: var(--surface); border: 1px solid #2d223b; border-radius: 12px; padding: 12px 14px; margin: 12px 0; }
details[open] { background: #221a2d; }
summary { cursor: pointer; font-weight: 700; }
summary::-webkit-details-marker { display: none; }

.partner-box { margin-top: 18px; background: #221a2d; border-left: 4px solid var(--brand); padding: 12px 14px; border-radius: 6px; color: var(--muted); }

/* Footer */
.site-footer { border-top: 1px solid #241b30; background: #0d0a11; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; gap: 18px; }
.footer-nav { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; }
.footer-nav a { color: var(--muted); }
.footer-nav a:hover { color: #fff; }
.tag { color: var(--muted); margin: 8px 0 0; }
.legal { border-top: 1px solid #221a2a; color: #b7abcf; font-size: 0.92rem; padding: 12px 0 24px; }

/* Responsive tweaks */
@media (max-width: 720px) {
  .header-inner { flex-wrap: wrap; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  /* Collapse header-right behind a toggle */
  .header-right { display: none; width: 100%; background: var(--surface); border: 1px solid #2d223b; border-radius: 12px; padding: 12px; }
  .site-header.nav-open .header-right { display: block; }
  .nav { flex-direction: column; gap: 10px; }
  .btn.small.primary { width: 100%; text-align: center; margin-top: 8px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  /* Add extra horizontal breathing room on mobile */
  .site-header .container, .site-footer .container {
    padding-left: calc(clamp(24px, 6vw, 32px) + env(safe-area-inset-left));
    padding-right: calc(clamp(24px, 6vw, 32px) + env(safe-area-inset-right));
  }
}

/* Light theme overrides: white background, greens with purple accents */
:root {
  --bg: #ffffff;
  --bg-alt: #f6f9f6;
  --text: #213547;
  --muted: #5f6c7b;
  --brand: #2e7d32; /* green */
  --brand-2: #6b2fa4; /* purple accent */
  --surface: #ffffff;
  --card: #ffffff;
  --success: #2e7d32;
}

body {
  color: var(--text);
  background:
    radial-gradient(900px 600px at 8% 0%, rgba(46,125,50,0.06), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(107,47,164,0.05), transparent 55%),
    #ffffff;
}

a { color: var(--brand); }
a:hover { color: #1b5e20; text-decoration: underline; }

.site-header {
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid #e6e8eb;
  box-shadow: 0 2px 10px rgba(16,24,40,0.05);
}
.nav a { color: #415365; }
.nav a:hover { color: var(--brand); }
.brand { color: #142334; }
/* Light theme: tweak menu toggle & header panel borders */
.menu-toggle { border-color: #e6e8eb; }
@media (max-width: 720px) {
  .header-right { border-color: #e6e8eb; background: #ffffff; }
}

.hero {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.88) 100%),
    url('https://images.unsplash.com/photo-1581411895200-40a1b13bfbfe?auto=format&fit=crop&w=1600&q=80'),
    url('/assets/photos/hero-fallback.svg');
  background-size: cover, cover, cover;
  background-position: center, center, center;
}

.btn.primary { background: linear-gradient(135deg, #2e7d32, #1b5e20); color: #fff; }
.btn.ghost { background: transparent; border-color: #d5d9de; color: #2c3e50; }
.btn.secondary { background: #f3eef9; color: #462a6b; border-color: #e3d9f2; }

.section.alt { background: var(--bg-alt); border-top: 1px solid #e6e8eb; border-bottom: 1px solid #e6e8eb; }
.section-intro, .note { color: #445263; }

.card { background: #ffffff; border: 1px solid #e6e8eb; box-shadow: 0 1px 2px rgba(16,24,40,0.04); }
.card p { color: #4b5563; }

.plan-list li { background: #ffffff; border: 1px solid #e6e8eb; }

details { background: #fafafa; border: 1px solid #e6e8eb; }
details[open] { background: #f3f5f3; }
summary { color: #12263a; }

.partner-box { background: #f0f7f1; color: #355e3b; border-left-color: var(--brand); }
.disclaimer { color: #5f6c7b; }

.site-footer { background: #f8f9fa; border-top: 1px solid #e6e8eb; }
.footer-nav a { color: #445263; }
.footer-nav a:hover { color: var(--brand); }
.tag { color: #516170; }
.legal { border-top: 1px solid #e6e8eb; color: #516170; }

/* Gallery */
.gallery { margin-top: 18px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.gallery figure { margin: 0; }
.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; border: 1px solid #e6e8eb; box-shadow: 0 1px 2px rgba(16,24,40,0.04); }
/* captions removed by request */
