:root {
  --font-heading: "Playfair Display", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-primary: #0B1220;
  --color-primary-alt: #111827;
  --color-bg: #F5F5F7;
  --color-accent-teal: #0F766E;
  --color-accent-gold: #D4AF37;
  --color-neutral-light: #E5E7EB;
  --color-neutral-mid: #6B7280;
  --color-neutral-dark: #374151;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-primary-alt);
  background: radial-gradient(circle at 10% 0%, #ffffff 0%, var(--color-bg) 45%, #eef1f6 100%);
  line-height: 1.6;
}
.container { width: min(1100px, 92vw); margin: 0 auto; }
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-primary); line-height: 1.2; }
a { color: var(--color-accent-teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(11, 18, 32, 0.08);
  background: rgba(245, 245, 247, 0.88);
}
.header-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 0; }
.brand { font-weight: 700; color: var(--color-primary); letter-spacing: 0.02em; }
.brand span { color: var(--color-accent-teal); }
.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.nav-list { list-style: none; display: flex; gap: 0.9rem; margin: 0; padding: 0; font-size: 0.95rem; }
.pill-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  padding: 0 0.8rem;
  border: 1px solid var(--color-neutral-mid);
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
}
.pill-control:hover {
  text-decoration: none;
}
.menu-toggle {
  display: none;
  -webkit-appearance: none;
  appearance: none;
  background-clip: padding-box;
  line-height: 1;
  overflow: hidden;
}
.mobile-menu { display: none; }
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0.6rem 1rem 1rem;
  border-top: 1px solid var(--color-neutral-light);
  background: rgba(245, 245, 247, 0.96);
}
.mobile-nav-list li a {
  display: block;
  padding: 0.55rem 0;
  color: var(--color-primary);
}
.hero {
  padding: 6rem 0 4rem;
  background:
    linear-gradient(140deg, rgba(11,18,32,0.96), rgba(17,24,39,0.86)),
    url("/static/web/img/assets/hero-pexels-4386404.jpg") center/cover;
  color: #fff;
}
.hero h1, .hero h2, .hero p { color: #fff; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.5rem; }
.hero h2 { font-size: clamp(1.2rem, 2.8vw, 1.8rem); margin-top: 0; font-family: var(--font-body); font-weight: 600; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.btn {
  display: inline-block;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}
.btn-primary { background: #fff; color: var(--color-primary); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }

.hero-subpage {
  padding: 3rem 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-subpage h1,
.hero-subpage p {
  color: #fff;
}
.hero-about {
  background:
    linear-gradient(135deg, rgba(11,18,32,0.9), rgba(17,24,39,0.82)),
    url("/static/web/img/assets/about-pexels-5716032.jpg") center/cover;
}
.hero-services {
  background:
    linear-gradient(135deg, rgba(11,18,32,0.9), rgba(15,118,110,0.75)),
    url("/static/web/img/assets/services-pexels-6771985.jpg") center/cover;
}
.hero-who {
  background:
    linear-gradient(135deg, rgba(11,18,32,0.9), rgba(17,24,39,0.8)),
    url("/static/web/img/assets/who-pexels-3184360.jpg") center/cover;
}
.hero-approach {
  background:
    linear-gradient(135deg, rgba(11,18,32,0.88), rgba(15,118,110,0.68)),
    url("/static/web/img/assets/approach-pexels-3183150.jpg") center/cover;
}
.hero-equity {
  background:
    linear-gradient(135deg, rgba(11,18,32,0.9), rgba(212,175,55,0.45)),
    url("/static/web/img/assets/equity-pexels-7567534.jpg") center/cover;
}
.hero-contact {
  background:
    linear-gradient(135deg, rgba(11,18,32,0.9), rgba(15,118,110,0.62)),
    url("/static/web/img/assets/contact-pexels-3183197.jpg") center/cover;
}
.hero-insights {
  background:
    linear-gradient(135deg, rgba(11,18,32,0.9), rgba(17,24,39,0.78)),
    url("/static/web/img/assets/insights-pexels-7688460.jpg") center/cover;
}

.section { padding: 3.2rem 0; }
.section-muted { background: #fff; border-top: 1px solid var(--color-neutral-light); border-bottom: 1px solid var(--color-neutral-light); }
.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--color-neutral-light);
  border-radius: 14px;
  padding: 1.1rem;
}
.card h3 { margin-top: 0.1rem; }
ol.steps { padding-left: 1.2rem; }
ol.steps li { margin-bottom: 0.7rem; }

form .field { margin-bottom: 0.9rem; }
label { display: block; font-weight: 600; margin-bottom: 0.3rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--color-neutral-mid);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  background: #fff;
}
.alert-ok {
  background: #e7f9ed;
  border: 1px solid #16A34A;
  color: #14532d;
  padding: 0.8rem;
  border-radius: 10px;
}
.errorlist {
  margin: 0.2rem 0 0;
  color: #DC2626;
  padding-left: 1.1rem;
}

.site-footer { padding: 1.8rem 0; background: #fff; border-top: 1px solid var(--color-neutral-light); }
.footer-wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; }
  .mobile-menu.is-open { display: block; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding-top: 5rem; }
}
