:root {
  /* Muted brand palette — blue + orange, toned down */
  --blue: #2f5d86;
  --blue-deep: #16395d;
  --blue-ink: #102b46;
  --orange: #cf9354;
  --orange-soft: #e3b687;
  --ink: #1b2b3c;
  --muted: #5d6e80;
  --paper: #f8fafc;
  --soft: #eef3f8;
  --soft-2: #e6eef5;
  --white: #ffffff;
  --line: rgba(16, 43, 70, 0.12);
  --shadow: 0 26px 60px rgba(16, 43, 70, 0.14);
  --shadow-soft: 0 14px 36px rgba(16, 43, 70, 0.09);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1180px;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 0.9rem; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h1 {
  max-width: 16ch;
  font-size: clamp(2.6rem, 5.2vw, 4.3rem);
  font-weight: 800;
}
h1 .accent { color: var(--orange); }
h2 {
  max-width: 24ch;
  font-size: clamp(1.9rem, 3.3vw, 2.85rem);
  font-weight: 800;
}
h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.01em; }

.container { width: min(100% - 44px, var(--max)); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -999px; top: 12px;
  background: var(--blue-deep);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(16, 43, 70, 0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}
.brand img { height: 44px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.88rem;
  font-weight: 600;
}
.site-nav a { color: rgba(27, 43, 60, 0.78); transition: color 150ms ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--blue); }
.nav-cta {
  padding: 0.66rem 1.15rem;
  border-radius: 999px;
  color: white !important;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(47, 93, 134, 0.26);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--blue-deep); }
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  cursor: pointer;
  padding: 12px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px; width: 100%;
  background: white;
  margin: 5px 0;
  transition: transform 200ms ease, opacity 200ms ease;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--orange);
}

/* Hero */
.hero {
  position: relative;
  padding: 150px 0 84px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--soft) 0%, var(--paper) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(16, 43, 70, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 43, 70, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 70% 20%, black, transparent 72%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.9fr);
  gap: 54px;
  align-items: center;
}
.hero-lede {
  max-width: 46ch;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.25vw, 1.14rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.8rem;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(47, 93, 134, 0.26);
}
.primary:hover { background: var(--blue-deep); }
.ghost {
  color: var(--blue-deep);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
}
.ghost:hover { border-color: var(--orange); background: var(--white); }
.full { width: 100%; }

/* Inline keyword list (replaces pill bubbles) */
.micro-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.9rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.micro-proof li {
  display: inline-flex;
  align-items: center;
}
.micro-proof li:not(:last-child)::after {
  content: "";
  width: 4px; height: 4px;
  margin-left: 0.9rem;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.7;
}

/* Hero photo board */
.hero-visual { justify-self: end; width: min(100%, 540px); }
.photo-board {
  display: grid;
  grid-template-columns: 1.3fr 0.82fr;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-deep) 120%);
  box-shadow: var(--shadow);
}
.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
}
.photo-card img { width: 100%; object-fit: cover; }
.photo-main { grid-row: span 2; }
.photo-main img { height: 420px; }
.photo-small img { height: 174px; }
.photo-card figcaption {
  padding: 11px 13px 12px;
  color: var(--blue-deep);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Sections */
.section { padding: 92px 0; }
.section-head { max-width: 760px; }
.section-copy {
  max-width: 60ch;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid,
.workflow,
.faq-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.service-grid { grid-template-columns: repeat(4, 1fr); }
.service-card,
.workflow-card,
.faq-item {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

/* Service cards — icon based */
.service-card {
  padding: 28px 24px 26px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--soft);
  border: 1px solid var(--line);
}
.service-icon svg { width: 30px; height: 30px; }
.service-kicker {
  margin: 0 0 0.6rem;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.service-card h3 { margin-bottom: 0.7rem; line-height: 1.3; }
.service-card p,
.workflow-card p,
.team-copy p,
.flit-content p:not(.eyebrow),
.faq-item p,
.inquiry-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Why Dashing — circles on dark */
.difference {
  background: var(--blue-ink);
  color: white;
}
.difference-head { max-width: 820px; margin-inline: auto; text-align: center; }
.difference-head .eyebrow { justify-content: center; }
.difference h2 { color: white; margin-inline: auto; }
.difference .eyebrow { color: var(--orange-soft); }
.difference .eyebrow::before { background: var(--orange-soft); }
.difference .section-copy { color: rgba(255, 255, 255, 0.66); margin-inline: auto; max-width: none; }
.difference-circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}
.circle-item { text-align: center; }
.circle {
  display: grid;
  place-items: center;
  width: 132px; height: 132px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.02);
}
.circle span {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange-soft);
  letter-spacing: -0.02em;
}
.circle-item h3 { color: white; margin-bottom: 0.7rem; }
.circle-item p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  max-width: 34ch;
  margin: 0 auto;
}

/* Process */
.workflow { grid-template-columns: repeat(3, 1fr); }
.workflow-card { padding: 28px 26px; }
.workflow-card span {
  display: block;
  margin-bottom: 14px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.workflow-card h3 { margin-bottom: 0.6rem; }

/* Team */
.team { background: linear-gradient(180deg, var(--soft) 0%, var(--soft-2) 100%); }
.team-grid,
.inquiry-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 52px;
  align-items: center;
}
.team-visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.team-copy h2 { margin-bottom: 1.2rem; }
.specialty-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  margin-top: 1.5rem;
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.specialty-list li { display: inline-flex; align-items: center; }
.specialty-list li:not(:last-child)::after {
  content: "";
  width: 4px; height: 4px;
  margin-left: 0.85rem;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.75;
}

/* Future Leaders */
.flit-section { padding: 0 0 92px; }
.flit-card {
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 40px 44px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.flit-logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding-right: 44px;
  border-right: 1px solid var(--line);
}
.flit-logo img { width: 150px; height: auto; }
.flit-content { flex: 1 1 auto; }
.flit-content .eyebrow { margin-bottom: 1.2rem; }
.flit-years {
  display: flex;
  gap: 48px;
  margin-bottom: 1.2rem;
}
.flit-year { display: flex; flex-direction: column; line-height: 1; }
.flit-year strong {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blue);
  letter-spacing: -0.03em;
}
.flit-year span {
  margin-top: 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.flit-note { margin: 0; }

/* FAQ */
.faq { background: var(--paper); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.faq-item { padding: 6px 24px; transition: border-color 180ms ease; }
.faq-item[open] { border-color: rgba(207, 147, 84, 0.45); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; }

/* Inquiry */
.contact-card {
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin-top: 28px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.contact-card p { margin: 0; font-size: 0.95rem; }
.contact-card strong { color: var(--blue-deep); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-card a { color: var(--blue); font-weight: 600; }
.contact-card a:hover { color: var(--orange); }

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 93, 134, 0.14);
}
textarea { resize: vertical; }
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

/* Footer */
.site-footer {
  padding: 56px 0;
  background: var(--blue-ink);
  color: white;
}
.footer-grid {
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 36px;
}
.footer-brand img { height: 44px; }
.footer-grid > div > p { margin-top: 1rem; }
.footer-grid p,
.footer-links a,
.legal p { color: rgba(255, 255, 255, 0.66); }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
}
.footer-links a:hover { color: var(--orange-soft); }
.legal { text-align: right; }
.legal p { margin: 0 0 0.4rem; font-size: 0.86rem; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 620ms ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }

/* Responsive */
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { justify-self: stretch; width: 100%; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; z-index: 102; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: grid;
    place-content: center;
    gap: 28px;
    background: rgba(248, 250, 252, 0.98);
    transform: translateX(100%);
    transition: transform 240ms ease;
    font-size: 1.25rem;
  }
  .site-nav.open { transform: translateX(0); }
  .nav-toggle.open span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(3) { opacity: 0; }
  .nav-toggle.open span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .difference-circles { grid-template-columns: 1fr; gap: 44px; max-width: 460px; margin-inline: auto; }
  .workflow,
  .team-grid,
  .inquiry-grid,
  .footer-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 28px; }
  .legal { text-align: left; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--max)); }
  .brand img { height: 38px; }
  .hero { padding: 124px 0 64px; }
  .section { padding: 68px 0; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .photo-board { grid-template-columns: 1fr; }
  .photo-main img, .photo-small img { height: 240px; }
  .service-grid { grid-template-columns: 1fr; }
  .team-visual img { height: 360px; }
  .flit-card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px 26px;
  }
  .flit-logo {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .flit-years { justify-content: center; gap: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
