/* ── SHARED SITE STYLES (solution pages) ─────────────── */
:root {
  --bg:        #0D0805;
  --bg2:       #130E08;
  --card:      #1C1408;
  --card2:     #231A0D;
  --accent:    #C87820;
  --accent-l:  #DF9230;
  --accent-bg: rgba(200,120,32,0.08);
  --accent-bd: rgba(200,120,32,0.20);
  --text:      #EDE8DE;
  --muted:     #8A7A65;
  --faint:     rgba(237,232,222,0.05);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Cormorant', serif; line-height: 1.15; }
em { font-style: italic; }
a { color: inherit; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13,8,5,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--accent-bd);
  z-index: 200;
}
.nav-name {
  font-family: 'Cormorant', serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}
.nav-right { display: flex; align-items: center; gap: 1.1rem; }
.nav-badge {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-bd);
  padding: 0.3rem 0.7rem;
}
.nav-burger {
  width: 30px; height: 22px;
  background: none; border: none; cursor: pointer;
  padding: 0; position: relative; flex-shrink: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  z-index: 320;
}
.nav-burger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--text);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s;
}
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(10.25px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-10.25px) rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  overflow-y: auto;
}
.menu-overlay::before {
  content: '';
  position: absolute;
  top: -10%; right: -15%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, var(--accent-bg) 0%, transparent 62%);
  pointer-events: none;
}
body.menu-open .menu-overlay { opacity: 1; visibility: visible; transform: translateY(0); }
.menu-links { display: flex; flex-direction: column; }
.menu-links a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: 'Cormorant', serif;
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  padding: 0.35rem 0;
  line-height: 1.2;
  transition: color 0.2s, padding-left 0.25s;
}
.menu-links a:hover { color: var(--accent-l); padding-left: 0.6rem; }
.menu-links a.active { color: var(--accent); }
.menu-idx {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
  width: 1.8rem;
}
.menu-foot {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--accent-bd);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2.5rem;
}
.menu-contact { display: flex; flex-direction: column; gap: 0.35rem; }
.menu-contact a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.menu-contact a:hover { color: var(--accent); }
.menu-contact a::before { content: '→ '; color: var(--accent); }

/* ── BUTTONS ── */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.btn-accent:hover { background: var(--accent-l); }
.btn-accent:active { transform: scale(0.98); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  border: 1px solid var(--accent-bd);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-bg); }

/* ── PAGE HERO ── */
.sol-hero {
  padding: 9rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.sol-hero::before {
  content: '';
  position: absolute;
  top: 0; right: -15%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle at 60% 40%, var(--accent-bg) 0%, transparent 60%);
  pointer-events: none;
}
.sol-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.2s, gap 0.2s;
}
.sol-back:hover { color: var(--accent); gap: 0.75rem; }
.sol-kicker {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.sol-hero h1 {
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 400;
  max-width: 720px;
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}
.sol-hero h1 em { color: var(--accent-l); }
.sol-lead {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.85;
}

/* ── SECTIONS ── */
.sol-section { padding: 4rem 1.5rem; }
.sol-section.alt { background: var(--bg2); }
.eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.sol-h2 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 400;
  max-width: 620px;
  margin-bottom: 2.5rem;
  text-wrap: pretty;
}
.sol-h2 em { color: var(--accent-l); }
.prose { max-width: 640px; }
.prose p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 1.4rem;
}
.prose p strong { color: var(--text); font-weight: 400; }
.pull {
  border-left: 2px solid var(--accent);
  padding: 1.4rem 1.75rem;
  margin: 2.5rem 0;
  background: var(--accent-bg);
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3.4vw, 1.75rem);
  line-height: 1.45;
  max-width: 660px;
}

/* ── APPROACH STEPS ── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--accent-bd);
  border: 1px solid var(--accent-bd);
}
.step-item {
  background: var(--bg);
  padding: 2rem 1.75rem;
  transition: background 0.25s;
}
.sol-section.alt .step-item { background: var(--bg2); }
.step-item:hover { background: var(--card); }
.step-num {
  font-family: 'Cormorant', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--accent-bd);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.step-item h4 { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.55rem; }
.step-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.9; }

/* ── SERVICE LIST ── */
.svc-list { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--accent-bd); border: 1px solid var(--accent-bd); }
.svc {
  background: var(--bg2);
  padding: 1.6rem 1.75rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.svc .arr { color: var(--accent); font-size: 1.1rem; line-height: 1.4; flex-shrink: 0; }
.svc h4 { font-size: 1.15rem; font-weight: 500; margin-bottom: 0.3rem; }
.svc p { font-size: 0.85rem; color: var(--muted); line-height: 1.85; }

/* ── CTA BAND ── */
.cta-band {
  padding: 5rem 1.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--accent-bd);
}
.cta-band::before {
  content: '';
  position: absolute;
  bottom: -25%; left: 30%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, var(--accent-bg) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 400;
  max-width: 640px;
  margin-bottom: 1.25rem;
  text-wrap: pretty;
}
.cta-band h2 em { color: var(--accent-l); }
.cta-band p { font-size: 0.95rem; color: var(--muted); max-width: 480px; margin-bottom: 2rem; line-height: 1.9; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--accent-bd);
  padding: 3.5rem 1.5rem 3rem;
}
.foot-name { font-family: 'Cormorant', serif; font-size: 1.4rem; font-weight: 400; margin-bottom: 0.2rem; }
.foot-role { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }
.compliance {
  border-top: 1px solid var(--faint);
  padding-top: 1.5rem;
  font-size: 0.66rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 680px;
}
.compliance strong { color: var(--text); font-weight: 500; }

/* ── RESPONSIVE ── */
@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .svc-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 800px) {
  .nav, .sol-hero, .sol-section, .cta-band, footer {
    padding-left: 3.5rem; padding-right: 3.5rem;
  }
}
