:root {
  --canvas: #f7f9fc;
  --ink: #0b1f3b;
  --ink-soft: #6b778c;
  --navy: #0b1f3b;
  --white: #f7f9fc;
  --accent: #c6a75c;
  --radius-xl: 18px;
  --transition: 180ms ease;
  --container: 1240px;
}

* {
  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;
  background: linear-gradient(180deg, #f6eadc 0%, #f4eee7 42%, #f7f9fc 100%);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  padding: 18px 0 0;
}

.nav {
  min-height: 74px;
  padding: 14px 22px;
  border-radius: 28px;
  background: rgba(11, 31, 59, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  overflow: hidden;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong,
.nav-btn,
.consulting-showcase-copy h1,
.consulting-showcase-rail a,
.consulting-showcase-rail span {
  color: var(--white);
}

.brand-copy span,
.nav-links a {
  color: rgba(248, 247, 244, 0.72);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-btn {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.menu-toggle {
  display: none;
}

.consulting-stage {
  padding: 16px 0 48px;
}

.consulting-anchor-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 20px;
}

.consulting-anchor-bar a {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(78, 62, 54, 0.1);
  color: #4e3e36;
}

.consulting-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.78fr) auto;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 250, 246, 0.9);
  border: 1px solid rgba(78, 62, 54, 0.1);
  box-shadow: 0 24px 48px rgba(78, 62, 54, 0.1);
}

.consulting-showcase-visual {
  position: relative;
  min-height: 100%;
  background: #eadfce;
}

.consulting-showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(10%, 0, 0);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.consulting-showcase-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.consulting-showcase-asset,
.consulting-showcase-media {
  width: 100%;
  height: 100%;
}

.consulting-showcase-media {
  object-fit: cover;
}

.consulting-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 42px;
  background: #fdebdc;
  border-left: 1px solid rgba(78, 62, 54, 0.2);
}

.consulting-showcase-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #4e3e36;
}

.consulting-showcase-copy p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: #6b5750;
}

.consulting-showcase-rail {
  min-width: 108px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: #10284b;
}

.consulting-showcase-control {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--white);
}

.consulting-quote-strip {
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(78, 62, 54, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.consulting-quote-strip p,
.consulting-quote-strip a {
  margin: 0;
  color: #4e3e36;
}

@media (max-width: 1100px) {
  .consulting-showcase {
    grid-template-columns: 1fr;
  }

  .consulting-showcase-copy {
    border-left: 0;
    border-top: 1px solid rgba(78, 62, 54, 0.12);
  }

  .consulting-showcase-rail {
    min-width: 0;
    flex-direction: row;
    padding: 18px 22px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .nav {
    padding: 14px 16px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
  }

  .consulting-anchor-bar {
    display: none;
  }

  .consulting-showcase {
    min-height: 0;
  }

  .consulting-showcase-visual {
    aspect-ratio: 6 / 5;
  }

  .consulting-showcase-copy {
    padding: 28px 22px;
  }

  .consulting-showcase-rail {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
  }

  .consulting-quote-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}
