
:root {
  --primary: #1d242a;
  --primary-dark: #171c21;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Inter, Arial, sans-serif; color: var(--slate-900); }
a { color: inherit; text-decoration: none; }

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

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,0.9); border-bottom: 1px solid var(--slate-200); backdrop-filter: blur(8px); }
.header-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 16px; align-items: center; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.logo { width: 44px; height: 44px; object-fit: cover; border-radius: 12px; box-shadow: 0 4px 10px rgba(16,185,129,.25); }
.logo-fallback { width: 44px; height: 44px; border-radius: 12px; background: var(--primary); color: white; display: grid; place-items: center; font-weight: 900; }
.brand-text { line-height: 1.1; }
.brand-text span { display: block; font-size: 12px; color: var(--slate-600); }

.nav { display: none; gap: 16px; }
.nav-link { padding: 6px 10px; border-radius: 10px; font-weight: 600; color: var(--slate-700); }
.nav-link:hover { color: var(--primary-dark); background: var(--slate-100); }
.nav-link.active { color: var(--primary-dark); background: rgba(16,185,129,.12); }

.cta { display: none; gap: 8px; }

@media (min-width: 860px) {
  .nav { display: flex; }
  .cta { display: flex; }
}

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; border-radius: 14px; font-weight: 700; font-size: 14px; border: 1px solid transparent; cursor: pointer; transition: .2s ease; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: rgba(16,185,129,.08); color: var(--primary-dark); border-color: rgba(16,185,129,.25); }
.btn-secondary:hover { background: rgba(16,185,129,.16); }
.btn-ghost { background: white; border-color: var(--slate-200); }
.btn-ghost:hover { background: var(--slate-100); }

.hero { background: linear-gradient(180deg, rgba(16,185,129,.08), white 45%); }
.hero-inner { padding: 56px 0; text-align: left; }
.hero h1 { font-size: 40px; margin: 0 0 8px; }
.hero .accent { color: var(--primary-dark); }
.lead { color: var(--slate-700); font-size: 18px; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.badge { background: rgba(16,185,129,.12); color: var(--primary-dark); border: 1px solid rgba(16,185,129,.25); padding: 6px 10px; border-radius: 999px; font-weight: 700; font-size: 12px; }
.hero-cta { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

.section { padding: 48px 0; }
.section.alt { background: var(--slate-100); }
.section-title { font-size: 28px; margin: 0 0 16px; }

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.card { background: white; border: 1px solid var(--slate-200); padding: 16px; border-radius: 18px; box-shadow: 0 2px 8px rgba(2,6,23,.04); }
.grid-list { columns: 2; column-gap: 24px; }
.grid-list li { break-inside: avoid; margin: 8px 0; }

.two-col { display: grid; gap: 16px; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; } }

.steps { padding-left: 0; list-style: none; }
.steps li { margin: 8px 0; }

.inline-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

.page-title { margin: 0 0 12px; font-size: 32px; }
.callout { padding: 12px 16px; background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.25); border-radius: 14px; margin-bottom: 16px; }

.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { border: 1px solid var(--slate-200); padding: 12px; text-align: left; }
.price-table thead th { background: var(--slate-100); }
.mt { margin-top: 24px; }
.image-frame { margin-top: 12px; border: 1px solid var(--slate-200); border-radius: 12px; padding: 8px; background: white; }
.image-frame img { width: 100%; height: auto; display: block; border-radius: 8px; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.gallery-item { border-radius: 12px; overflow: hidden; border: 1px solid var(--slate-200); background: white; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.lightbox { position: fixed; inset: 0; background: rgba(15,23,42,.85); display: none; align-items: center; justify-content: center; padding: 24px; z-index: 50; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 10px 50px rgba(0,0,0,.5); }

.stack { display: grid; gap: 10px; width: fit-content; }

.input, .textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--slate-200); font-size: 14px; }
.input:focus, .textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(16,185,129,.2); }

.small { font-size: 12px; }
.muted { color: var(--slate-600); }

.site-footer { background: white; border-top: 1px solid var(--slate-200); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 0; }
.logo-mini { width: 32px; height: 32px; border-radius: 10px; background: var(--primary); color: white; display: grid; place-items: center; font-weight: 900; }
.foot-title { font-weight: 800; }
.foot-sub { color: var(--slate-600); font-size: 12px; }
.footer-right a { display: block; color: var(--primary-dark); text-decoration: underline; }

/* Mobile nav toggle */
.menu-toggle { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--slate-200); background: white; border-radius: 10px; padding: 8px 10px; }
.mobile-nav { display: none; border-top: 1px solid var(--slate-200); background: white; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 12px 8px; border-bottom: 1px solid var(--slate-100); font-weight: 600; color: var(--slate-700); }
.mobile-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px 8px; }

/* Social link */
.social { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--primary-dark); text-decoration: underline; }
.social svg { width: 18px; height: 18px; }

.ba-pair { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 14px; }
.ba-pair figure { margin: 0; border: 1px solid var(--slate-200); border-radius: 12px; overflow: hidden; background: white; }
.ba-pair img { width: 100%; height: auto; display: block; }
.ba-pair figcaption { padding: 8px 10px; font-size: 13px; font-weight: 700; color: var(--slate-700); background: var(--slate-100); }
@media (min-width: 800px) { .ba-pair { grid-template-columns: 1fr 1fr; } }
.insta-cta { margin-top: 20px; text-align: center; }
