/* Calm lavender theme */
:root {
  --brand: #6463C2;
  --brand-2: #B4B2FF;
  --ink: #1F2937;
  --muted: #6B7280;
  --bg: #FFFFFF;
  --bg-alt: #E7E3FF;
  --radius: 16px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.7; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(920px, 92vw); margin: 0 auto; }
.readable { max-width: 72ch; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; background: #000; color: #fff; padding: 8px 12px; border-radius: 8px; }

/* Header */
.site-header { background: var(--bg); border-bottom: 1px solid #D8D2FF; position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; gap: 12px; }
.brand img { max-height: 48px; width: auto; display: block; }
.nav-toggle { display: none; border: 1px solid #d1d5db; background: var(--bg); border-radius: 12px; padding: 14px 18px; font-weight: 700; }
.nav-list { list-style: none; display: flex; gap: 14px; margin: 0; padding: 0; }
.nav-list a { padding: 8px 10px; border-radius: 10px; }
.nav-list a:hover { background: #EDE9FF; text-decoration: none; }

/* Hero */
.hero.minimal { background: var(--bg-alt); border-bottom: 1px solid #D8D2FF; }
.hero.minimal .container { padding: 64px 0; text-align: center; }
.hero.with-logo .brand-hero { display:flex; justify-content:center; margin-bottom: 14px; }
.hero.with-logo .brand-hero img { max-height: 168px; width:auto; height:auto; filter: drop-shadow(0 1px 0 rgba(0,0,0,0.04)); }
.hero h1 { font-size: clamp(28px, 4vw, 44px); margin: 0 0 8px; }
.hero p { margin: 0 0 16px; color: var(--muted); }
.cta-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 18px; border-radius: 12px; border: 1px solid var(--brand); }
.btn.primary { background: var(--brand); color: white; }
.btn.ghost { background: transparent; color: var(--brand); }

/* Sections */
.section { padding: 44px 0; }
.page-header { background: var(--bg-alt); border-bottom: 1px solid #D8D2FF; }
.page-header .container { padding: 72px 0; }
.page-header.with-logo { position: relative; overflow: hidden; min-height: 240px; }
.page-header.with-logo::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/logo.png") no-repeat center 40px;
  background-size: auto 180px; opacity: 0.15; pointer-events: none;
}
@media (max-width: 760px) {
  .page-header .container { padding: 56px 0; }
  .page-header.with-logo { min-height: 200px; }
  .page-header.with-logo::before { background-position: center 28px; background-size: auto 140px; }
}

.grid { display: grid; gap: 16px; }
.grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card { background: #fff; border: 1px solid #D8D2FF; border-radius: var(--radius); padding: 18px; }

/* Forms */
.contact-form { display: grid; gap: 12px; max-width: 520px; }
.contact-form label span { display: block; font-weight: 600; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; border: 1px solid #dfe3ff; border-radius: 10px; }

/* Footer */
.site-footer { border-top: 1px solid #D8D2FF; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }

/* Responsive */
@media (max-width: 880px) { .grid.two { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .nav-list { display: none; flex-direction: column; gap: 8px; background: var(--bg); position: absolute; right: 16px; top: 64px; padding: 12px; border: 1px solid #D8D2FF; border-radius: 12px; }
  .nav-list.open { display: flex; }
}
