* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text, #111827);
  background: var(--color-bg, #ffffff);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 32px)); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--color-surface, #fff) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border, #e5e7eb);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 24px; }
.brand { font-weight: 900; text-decoration: none; letter-spacing: -0.03em; font-size: 1.1rem; }
.main-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.main-nav a { text-decoration: none; color: var(--color-muted, #667085); font-weight: 700; font-size: .95rem; }
.main-nav a:hover { color: var(--color-primary, #2563eb); }
.section { padding: 84px 0; }
.hero-section {
  background: radial-gradient(circle at top right, var(--color-secondary, #e0f2fe), transparent 42%), var(--color-bg, #fff);
  padding: 112px 0;
}
.hero-inner { text-align: center; max-width: 860px; }
.eyebrow { color: var(--color-primary, #2563eb); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; margin-bottom: 14px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: .95; letter-spacing: -0.07em; margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.02; letter-spacing: -0.05em; margin-bottom: 18px; }
h3 { font-size: 1.25rem; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 10px; }
.lead { font-size: clamp(1.12rem, 2vw, 1.35rem); color: var(--color-muted, #667085); max-width: 720px; margin: 0 auto 30px; }
.actions { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .16s ease, filter .16s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(.97); }
.btn-primary { background: var(--color-primary, #2563eb); color: var(--color-primary-text, #fff); }
.btn-secondary { background: var(--color-secondary, #e5e7eb); color: var(--color-text, #111827); border-color: var(--color-border, #e5e7eb); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.section-heading p { color: var(--color-muted, #667085); font-size: 1.08rem; }
.grid { display: grid; gap: 22px; }
.cols-1 { grid-template-columns: 1fr; }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}
.card p { color: var(--color-muted, #667085); margin-bottom: 0; }
.icon-dot { width: 42px; height: 42px; border-radius: 50%; background: var(--color-secondary, #dbeafe); border: 10px solid var(--color-primary, #2563eb); margin-bottom: 18px; }
.text-section.text-center { text-align: center; }
.content p { color: var(--color-muted, #667085); font-size: 1.08rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.copy p { color: var(--color-muted, #667085); font-size: 1.05rem; }
.media { border-radius: 28px; overflow: hidden; background: var(--color-surface-alt, #f3f4f6); min-height: 300px; display: grid; place-items: center; color: var(--color-muted, #667085); font-weight: 800; }
.media img { width: 100%; height: 100%; object-fit: cover; }
.cta-box {
  text-align: center;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 34px;
  background: linear-gradient(135deg, var(--color-primary, #2563eb), var(--color-accent, #0ea5e9));
  color: var(--color-primary-text, #fff);
}
.cta-box p { max-width: 660px; margin: 0 auto; opacity: .9; font-size: 1.1rem; }
.cta-box .btn-primary { background: var(--color-primary-text, #fff); color: var(--color-primary, #2563eb); }
.faq-list { display: grid; gap: 12px; }
details { background: var(--color-surface, #fff); border: 1px solid var(--color-border, #e5e7eb); border-radius: 18px; padding: 18px 22px; }
summary { cursor: pointer; font-weight: 900; }
details p { color: var(--color-muted, #667085); margin: 12px 0 0; }
.gallery-grid { display: grid; gap: 18px; }
.gallery-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gallery-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-grid figure { margin: 0; background: var(--color-surface, #fff); border: 1px solid var(--color-border, #e5e7eb); border-radius: 18px; overflow: hidden; }
.gallery-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-grid figcaption { padding: 10px 12px; color: var(--color-muted, #667085); font-size: .9rem; }
blockquote.card { margin: 0; }
blockquote p { font-size: 1.05rem; color: var(--color-text, #111827); }
blockquote footer { font-weight: 900; }
blockquote footer span { display: block; color: var(--color-muted, #667085); font-weight: 600; font-size: .9rem; }
.contact-lines { display: grid; gap: 8px; margin-top: 22px; }
.contact-lines a { color: var(--color-primary, #2563eb); font-weight: 900; }
.contact-form { background: var(--color-surface, #fff); border: 1px solid var(--color-border, #e5e7eb); border-radius: 24px; padding: 24px; display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 6px; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--color-border, #e5e7eb); border-radius: 14px; padding: 12px 14px; font: inherit; background: var(--color-bg, #fff); color: var(--color-text, #111827); }
.contact-form button { border: 0; cursor: pointer; }
.hp { display: none !important; }
.site-footer { background: var(--color-surface-alt, #f3f4f6); border-top: 1px solid var(--color-border, #e5e7eb); padding: 34px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; flex-wrap: wrap; }
.footer-inner p { margin: 0; color: var(--color-muted, #667085); }
.footer-inner nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-inner a { color: var(--color-muted, #667085); text-decoration: none; font-weight: 800; }
@media (max-width: 820px) {
  .header-inner, .footer-inner { align-items: flex-start; flex-direction: column; }
  .split, .cols-2, .cols-3, .gallery-cols-2, .gallery-cols-3, .gallery-cols-4 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero-section { padding: 84px 0; }
}
