/* Dhruv Associate — Specialist Society Services */

:root {
  --navy: #0a2540;
  --navy-deep: #06182b;
  --navy-soft: #143a5c;
  --teal: #2aa8c7;
  --teal-deep: #1e8aa5;
  --teal-soft: #e6f6fa;
  --ink: #1a2b3c;
  --muted: #5a6b7c;
  --line: rgba(10, 37, 64, 0.12);
  --surface: #f4f7fa;
  --surface-alt: #eef3f7;
  --white: #fbfcfd;
  --shadow: 0 18px 50px rgba(10, 37, 64, 0.08);
  --radius: 1.25rem;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --header-h: 4.5rem;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: clip;
}

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

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy);
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
}

h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.2vw, 2.55rem);
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.85rem 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(251, 252, 253, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
  padding: 0.55rem 0;
}

.nav-shell {
  width: min(100% - 1.5rem, calc(var(--max) + 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(251, 252, 253, 0.92);
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 999px;
  padding: 0.45rem 0.55rem 0.45rem 1rem;
  box-shadow: var(--shadow);
}

.brand img {
  width: auto;
  height: 58px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--teal-soft);
  color: var(--navy-deep);
}

.site-nav .btn-nav {
  margin-left: 0.35rem;
  color: var(--white);
  padding: 0.65rem 1.1rem;
}

.site-nav .btn-nav:hover {
  background: var(--teal-deep);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: var(--teal-soft);
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}

.nav-toggle-bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--navy);
  margin: 0.28rem auto;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-soft);
  color: var(--white);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--teal-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}

.btn-ghost-dark:hover {
  background: var(--teal-soft);
  color: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 6rem 0 5rem;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(42, 168, 199, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(42, 168, 199, 0.18), transparent 50%),
    linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 45%, #0d3554 100%);
  z-index: 0;
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, 720px);
  margin-inline: auto;
  padding-inline: clamp(0rem, 4vw, 2rem);
  animation: heroIn 0.9s var(--ease) both;
}

.hero-logo {
  width: min(260px, 70vw);
  height: auto;
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  padding: 0.65rem 0.9rem;
}

.hero h1 {
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1rem;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  max-width: 42ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section.alt {
  background: var(--surface-alt);
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.85rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 58ch;
}

/* About pillars — asymmetric 2x2, not equal card row */
.pillar-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem 2.5rem;
  margin-bottom: 3rem;
}

.pillar {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.pillar:nth-child(2),
.pillar:nth-child(4) {
  margin-top: 2.5rem;
}

.pillar-num {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.pillar p {
  color: var(--muted);
  margin: 0;
}

.stat-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 1rem;
}

.stat-value {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
}

.why-item {
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-top: 1px solid var(--line);
}

.why-item:nth-child(odd) {
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}

.why-item:nth-child(even) {
  padding-left: 2rem;
}

.why-sub {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.why-item > p:last-child {
  color: var(--muted);
  margin: 0;
}

.operating-answer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  border-radius: calc(var(--radius) + 0.25rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.operating-answer h3 {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.5rem;
}

.operating-answer ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.5rem;
  margin: 1.25rem 0 1.5rem;
}

.operating-answer li {
  position: relative;
  padding-left: 1.1rem;
}

.operating-answer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal);
}

.operating-point {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.98rem;
}

.operating-point strong {
  color: var(--white);
}

/* Services flow */
.flow-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
  counter-reset: none;
}

.flow-steps li {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 1rem 1.25rem 0;
  border-top: 2px solid var(--teal);
}

.flow-steps span {
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--teal);
  line-height: 1;
}

.flow-steps strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.flow-steps em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.deliverables {
  margin-bottom: 2.5rem;
}

.deliverables h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.deliverable-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.deliverable-row h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.deliverable-row p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.value-strip {
  background: var(--teal-soft);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
}

.value-strip h3 {
  margin-bottom: 1rem;
}

.value-strip ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.value-strip li {
  color: var(--muted);
  padding-left: 1rem;
  border-left: 3px solid var(--teal);
}

.value-strip strong {
  color: var(--navy);
}

/* Audit table */
.audit-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.audit-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.95rem;
}

.audit-table th,
.audit-table td {
  text-align: left;
  padding: 1rem 1.15rem;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.audit-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.audit-table tbody th {
  font-weight: 600;
  color: var(--navy);
  width: 22%;
}

.audit-table tbody td {
  color: var(--muted);
}

.audit-table tbody tr:last-child th,
.audit-table tbody tr:last-child td {
  border-bottom: 0;
}

.note {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 65ch;
  margin: 0;
}

/* Custom workstreams */
.workstream-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.workstream {
  padding: 1.5rem 0 0;
  border-top: 2px solid var(--navy);
}

.workstream-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.65rem;
}

.workstream ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.workstream li {
  color: var(--muted);
  font-size: 0.95rem;
  padding-left: 0.9rem;
  position: relative;
}

.workstream li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--teal);
  border-radius: 1px;
}

.how-we-run {
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.how-we-run h3 {
  font-family: var(--display);
  font-size: 1.4rem;
}

.how-we-run > p {
  color: var(--muted);
  max-width: 58ch;
}

.how-we-run ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 1.25rem;
  counter-reset: step;
}

.how-we-run li {
  counter-increment: step;
  font-weight: 600;
  color: var(--navy);
}

.how-we-run li::before {
  content: counter(step, decimal-leading-zero) "  ";
  color: var(--teal);
  font-family: var(--display);
}

/* Founder */
.founder {
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--surface-alt) 100%);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.founder-photo {
  position: relative;
}

.founder-photo::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  border-radius: calc(var(--radius) + 0.35rem);
  z-index: 0;
  opacity: 0.9;
}

.founder-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder-copy .founder-title {
  font-weight: 600;
  color: var(--navy-soft);
  margin-bottom: 0.85rem;
}

.founder-creds {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.35rem;
}

.founder-creds li {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
}

.founder-copy > p:not(.eyebrow):not(.founder-title) {
  color: var(--muted);
  margin-bottom: 1.75rem;
  max-width: 48ch;
}

/* Contact */
.contact {
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(42, 168, 199, 0.12), transparent 50%),
    var(--surface);
}

.consult-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.consult-steps li {
  padding-top: 1.25rem;
  border-top: 2px solid var(--teal);
}

.consult-steps span {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--teal);
  display: block;
  margin-bottom: 0.5rem;
}

.consult-steps p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  border-radius: calc(var(--radius) + 0.35rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-cta-block {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.contact-cta-block h3 {
  font-family: var(--display);
  font-size: 1.65rem;
  color: var(--white);
}

.contact-cta-block > p {
  margin-bottom: 1.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-actions .btn-ghost-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-actions .btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.contact-details {
  margin: 0;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: grid;
  gap: 1.35rem;
  align-content: center;
}

.contact-details dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.35rem;
}

.contact-details dd {
  margin: 0;
  color: var(--navy);
  font-weight: 500;
}

.contact-details a {
  color: var(--navy);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--teal-deep);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand img {
  width: 140px;
  height: auto;
  background: var(--white);
  border-radius: 0.75rem;
  padding: 0.4rem 0.55rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 36ch;
  margin: 0;
  font-size: 0.95rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--teal);
}

.footer-contact p {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding: 1.25rem 0 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--teal);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* About split + value pillars (KD-inspired structure) */
.about-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-traits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.about-traits li {
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--white);
}

.about-panel {
  padding: clamp(1.75rem, 4vw, 2.4rem);
  border-radius: var(--radius);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-panel .eyebrow {
  color: var(--teal);
}

.about-panel h3 {
  font-family: var(--display);
  color: var(--white);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.about-panel > p:not(.eyebrow):not(.stat-line) {
  margin-bottom: 1.5rem;
}

.about-stat {
  border-top-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
}

.about-stat .stat-value {
  color: var(--white);
}

.value-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-pillar {
  padding: 1.5rem 1.35rem 1.6rem;
  border-top: 2px solid var(--teal);
  border-radius: 0 0 1.1rem 1.1rem;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.05);
}

.value-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 1.55rem;
}

.value-icon svg,
.service-card-icon svg,
.flow-icon svg,
.deliverable-icon svg,
.office-icon svg {
  width: 1.15em;
  height: 1.15em;
  display: block;
}

.brand picture,
.footer-brand picture {
  display: block;
}

.value-label {
  margin: 0 0 0.45rem;
  color: var(--teal-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.value-pillar h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.value-pillar > p:last-child {
  color: var(--muted);
  margin: 0;
}

/* Society service cards (KD-style block) */
.services {
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 48%, rgba(10, 37, 64, 0.03) 48.5%, rgba(10, 37, 64, 0.03) 49%, transparent 49.5%),
    linear-gradient(45deg, transparent 62%, rgba(42, 168, 199, 0.04) 62.5%, rgba(42, 168, 199, 0.04) 63%, transparent 63.5%);
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-banner {
  max-width: 46rem;
  margin-bottom: 2.75rem;
}

.services-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.services-banner > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
  margin: 0;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-bottom: 2rem;
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  min-height: 100%;
  padding: 1.45rem 1.35rem 1.55rem;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 1.35rem;
  background: rgba(251, 252, 253, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 18px 42px rgba(10, 37, 64, 0.05);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 168, 199, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 55px rgba(10, 37, 64, 0.1);
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 1;
}

.service-card-grid::after {
  content: none;
}

@media (min-width: 961px) {
  .service-card-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    grid-column: span 2;
  }

  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 3;
  }
}

.service-card-icon {
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  flex-shrink: 0;
  border-radius: 1rem;
  background: linear-gradient(145deg, var(--teal-soft), #d8f1f7);
  color: var(--navy);
  font-size: 1.7rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card:hover .service-card-icon {
  background: var(--navy);
  color: var(--teal);
}

.service-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
  color: var(--navy);
}

.service-card-body p {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.services-cta {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0 3.5rem;
}

.flow-icon,
.deliverable-icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.55rem;
  border-radius: 0.7rem;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 1.2rem;
}

.flow-steps li {
  position: relative;
}

.accounting-detail-intro {
  margin-top: 1rem;
}

/* Clientele */
.client-list {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.client-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.client-name {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.client-flats {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.client-flats strong {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  color: var(--teal-deep);
  margin-right: 0.25rem;
}

/* Office addresses */
.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.office-card {
  padding: 1.75rem 1.75rem 1.9rem;
  border-top: 2px solid var(--teal);
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.office-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 0.85rem;
  background: var(--teal-soft);
  color: var(--navy);
  font-size: 1.4rem;
}

.office-card .eyebrow {
  margin-bottom: 0.55rem;
}

.office-card h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.office-card address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.footer-contact p {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 34ch;
}

.footer-contact p strong {
  display: block;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-inner,
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .pillar-grid,
  .why-grid,
  .flow-steps,
  .deliverable-row,
  .workstream-grid,
  .consult-steps,
  .founder-layout,
  .contact-panel,
  .office-grid,
  .about-split,
  .value-pillars,
  .footer-grid,
  .operating-answer ul {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(odd),
  .service-card:nth-child(even),
  .service-card:last-child {
    grid-column: auto;
  }

  .pillar:nth-child(2),
  .pillar:nth-child(4) {
    margin-top: 0;
  }

  .why-item:nth-child(odd),
  .why-item:nth-child(even) {
    padding: 1.5rem 0;
    border-right: 0;
  }

  .flow-steps {
    grid-template-columns: 1fr 1fr;
  }

  .founder-layout {
    gap: 2rem;
  }

  .founder-photo {
    max-width: 380px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(6, 24, 43, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    color: var(--white);
    font-size: 1.25rem;
    padding: 0.75rem 1.25rem;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    background: rgba(42, 168, 199, 0.2);
    color: var(--white);
  }

  .site-nav .btn-nav {
    margin: 1rem 0 0;
    background: var(--teal);
  }

  .nav-shell {
    position: relative;
    z-index: 60;
  }

  .nav-toggle {
    position: relative;
    z-index: 70;
  }
}

@media (max-width: 960px) and (min-width: 641px) {
  .service-card-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .service-card {
    grid-column: auto !important;
  }
}

@media (max-width: 640px) {
  .client-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .service-card-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    grid-template-columns: auto 1fr;
    grid-column: auto !important;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5.5rem;
    min-height: auto;
    padding-bottom: 4rem;
  }

  .hero h1 {
    max-width: none;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Premium visual upgrade */
.btn {
  cursor: pointer;
}

.btn-accent {
  background: var(--teal);
  color: var(--navy-deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-accent:hover {
  background: #54c0d8;
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  margin: -0.45rem -0.75rem -0.45rem 0.15rem;
  border-radius: 50%;
  background: rgba(6, 24, 43, 0.12);
  font-size: 0.9rem;
  transition: transform 0.35s var(--ease);
}

.btn:hover .btn-icon {
  transform: rotate(8deg) translate(1px, -1px);
}

.site-nav .btn-nav {
  font-family: inherit;
  font-size: 0.88rem;
  line-height: 1.2;
}

.hero {
  min-height: max(760px, 100dvh);
  padding: 7.5rem 0 4.5rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(100% - 3rem, 1320px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.hero-copy {
  min-width: 0;
  animation: heroIn 0.9s var(--ease) both;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 2rem;
  height: 1px;
  background: var(--teal);
  transform-origin: left;
  animation: lineGrow 0.8s 0.35s var(--ease) both;
}

.hero .hero-logo {
  width: min(220px, 64vw);
  margin-bottom: 1.9rem;
  border-radius: 0.85rem;
  padding: 0.5rem 0.7rem;
  filter: none;
  box-shadow: 0 16px 48px rgba(2, 13, 23, 0.18);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.65rem);
  line-height: 0.98;
  max-width: 11ch;
  text-wrap: balance;
}

.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  max-width: 46ch;
}

.hero-actions {
  align-items: center;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-assurance span {
  position: relative;
  padding-left: 0.9rem;
}

.hero-assurance span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--teal);
}

.hero-visual {
  position: relative;
  min-width: 0;
  transform: translateY(var(--parallax-y, 0px));
  transition: transform 0.6s var(--ease);
  animation: heroVisualIn 1.1s 0.12s var(--ease) both;
}

.hero-image-shell {
  position: relative;
  border-radius: 2rem 2rem 7rem 2rem;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 44px 100px rgba(1, 12, 22, 0.34);
  overflow: hidden;
}

.hero-image-shell::after {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-radius: calc(2rem - 0.25rem) calc(2rem - 0.25rem) calc(7rem - 0.25rem) calc(2rem - 0.25rem);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero-image-shell img {
  width: 100%;
  min-height: 540px;
  max-height: 660px;
  object-fit: cover;
  object-position: 62% center;
  border-radius: calc(2rem - 0.25rem) calc(2rem - 0.25rem) calc(7rem - 0.25rem) calc(2rem - 0.25rem);
  transform: scale(1.01);
  transition: transform 1.2s var(--ease);
}

.hero-visual:hover .hero-image-shell img {
  transform: scale(1.045);
}

.hero-image-shade {
  position: absolute;
  inset: 0.45rem;
  border-radius: calc(2rem - 0.25rem) calc(2rem - 0.25rem) calc(7rem - 0.25rem) calc(2rem - 0.25rem);
  background:
    linear-gradient(90deg, rgba(6, 24, 43, 0.28), transparent 45%),
    linear-gradient(180deg, transparent 55%, rgba(6, 24, 43, 0.4));
  pointer-events: none;
}

.hero-proof {
  position: absolute;
  left: -2rem;
  bottom: 2.25rem;
  display: grid;
  gap: 0.1rem;
  min-width: 150px;
  padding: 1.1rem 1.2rem;
  border-radius: 1.15rem;
  background: rgba(251, 252, 253, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 24px 60px rgba(2, 13, 23, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-proof strong {
  font-family: var(--display);
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-orbit {
  position: absolute;
  width: 118px;
  height: 118px;
  right: -2.25rem;
  top: -2.25rem;
  overflow: visible;
  animation: orbitSpin 18s linear infinite;
}

.hero-orbit circle:first-child {
  fill: none;
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 1;
  stroke-dasharray: 5 7;
}

.hero-orbit circle:last-child {
  fill: var(--teal);
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 2;
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateX(42px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

.stat-plus {
  color: var(--teal);
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 1;
  margin-left: -0.75rem;
}

.service-graphic {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) 1.42fr;
  align-items: center;
  gap: 2rem;
  min-height: 190px;
  margin: 0 0 3rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  overflow: hidden;
  border-radius: 1.75rem;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(42, 168, 199, 0.22), transparent 35%),
    var(--navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.service-graphic-copy {
  display: grid;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}

.service-graphic-copy span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-graphic-copy strong {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.service-graphic svg {
  width: 100%;
  overflow: visible;
}

.service-graphic .graphic-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.26);
  stroke-width: 2;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
}

.service-graphic.is-visible .graphic-path {
  animation: drawPath 1.8s 0.25s var(--ease) forwards;
}

.service-graphic circle {
  fill: var(--navy);
  stroke: var(--teal);
  stroke-width: 3;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  transform: scale(0);
}

.service-graphic.is-visible circle {
  animation: pointIn 0.5s var(--ease) forwards;
}

.service-graphic.is-visible circle:nth-child(2) { animation-delay: 0.35s; }
.service-graphic.is-visible circle:nth-child(3) { animation-delay: 0.6s; }
.service-graphic.is-visible circle:nth-child(4) { animation-delay: 0.85s; }
.service-graphic.is-visible circle:nth-child(5) { animation-delay: 1.1s; }
.service-graphic.is-visible circle:nth-child(6) { animation-delay: 1.35s; }

@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}

@keyframes pointIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.audit-visual {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: stretch;
  gap: 0;
  margin: -0.5rem 0 2.5rem;
  padding: 0.45rem;
  border-radius: 1.8rem;
  background: rgba(10, 37, 64, 0.05);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 28px 70px rgba(10, 37, 64, 0.08);
}

.audit-visual-image {
  overflow: hidden;
  border-radius: calc(1.8rem - 0.25rem) 0 0 calc(1.8rem - 0.25rem);
}

.audit-visual-image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.2s var(--ease);
}

.audit-visual.is-visible .audit-visual-image img {
  transform: scale(1);
}

.audit-visual figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 0 calc(1.8rem - 0.25rem) calc(1.8rem - 0.25rem) 0;
  background: var(--white);
}

.audit-visual figcaption span {
  color: var(--teal-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audit-visual figcaption strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.2;
}

/* Consultation dialog */
body.dialog-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

.consultation-dialog {
  width: min(1040px, calc(100% - 2rem));
  max-height: min(92dvh, 920px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 2rem;
  color: var(--ink);
  background: transparent;
  box-shadow: 0 42px 120px rgba(3, 16, 29, 0.36);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    display 0.35s allow-discrete,
    overlay 0.35s allow-discrete;
}

.consultation-dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@starting-style {
  .consultation-dialog[open] {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
}

.consultation-dialog::backdrop {
  background: rgba(3, 16, 29, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition:
    opacity 0.35s var(--ease),
    display 0.35s allow-discrete,
    overlay 0.35s allow-discrete;
}

.consultation-dialog[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .consultation-dialog[open]::backdrop {
    opacity: 0;
  }
}

.dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  height: min(760px, 92dvh);
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  overflow: hidden;
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.dialog-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 3;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 50%;
  background: rgba(251, 252, 253, 0.88);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.dialog-close:hover {
  transform: rotate(6deg);
  background: var(--teal-soft);
}

.dialog-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 1.5px;
  background: var(--navy);
}

.dialog-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.dialog-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.dialog-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 4vw, 3.25rem);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 25% 10%, rgba(42, 168, 199, 0.32), transparent 34%),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.dialog-intro::before,
.dialog-intro::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.dialog-intro::before {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -120px;
}

.dialog-intro::after {
  width: 340px;
  height: 340px;
  top: -120px;
  right: -160px;
}

.dialog-intro > * {
  position: relative;
  z-index: 1;
}

.dialog-intro .eyebrow {
  color: var(--teal);
}

.dialog-intro h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.dialog-intro > p:not(.eyebrow) {
  font-size: 0.95rem;
}

.dialog-trust {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
}

.dialog-trust span {
  position: relative;
  padding-left: 1rem;
}

.dialog-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--teal);
}

.consultation-form {
  padding: clamp(2rem, 4vw, 3.25rem);
  overflow-y: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.15rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
  align-content: start;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.form-field label span {
  color: #a23737;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(10, 37, 64, 0.15);
  border-radius: 0.75rem;
  outline: none;
  color: var(--ink);
  background: #f8fafc;
  font: inherit;
  font-size: 0.9rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.form-field textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(42, 168, 199, 0.13);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #b94a4a;
  box-shadow: 0 0 0 3px rgba(185, 74, 74, 0.08);
}

.field-error {
  min-height: 1em;
  margin: 0;
  color: #a23737;
  font-size: 0.7rem;
  line-height: 1.35;
}

.honey-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  cursor: pointer;
}

.consent-field input {
  width: 1rem;
  height: 1rem;
  margin: 0.15rem 0 0;
  accent-color: var(--teal-deep);
}

.consent-error {
  margin: 0.25rem 0 0 1.65rem;
}

.form-alert {
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border-left: 3px solid #a23737;
  background: rgba(185, 74, 74, 0.07);
  color: #8e3636;
  font-size: 0.82rem;
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
  min-height: 3.15rem;
}

.submit-loader {
  display: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(6, 24, 43, 0.28);
  border-top-color: var(--navy-deep);
  border-radius: 50%;
  animation: loaderSpin 0.8s linear infinite;
}

.consultation-form.is-submitting .submit-loader {
  display: block;
}

.consultation-form.is-submitting .form-submit {
  pointer-events: none;
  opacity: 0.75;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

.form-note {
  margin: 0.65rem 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.68rem;
}

.form-success {
  grid-column: 2;
  align-self: center;
  justify-self: center;
  max-width: 430px;
  padding: 3rem;
  text-align: center;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.35rem;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 1.5rem;
  font-weight: 700;
}

.form-success p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.footer-modal-link {
  align-self: flex-start;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
}

.footer-modal-link:hover {
  color: var(--teal);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
    gap: 2.5rem;
  }

  .hero-proof {
    left: -1rem;
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding: 6.5rem 0 4rem;
  }

  .hero-grid,
  .service-graphic,
  .audit-visual,
  .office-grid,
  .about-split,
  .value-pillars,
  .dialog-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    width: min(100% - 2rem, 720px);
    gap: 3rem;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-image-shell img {
    min-height: 430px;
  }

  .service-graphic {
    gap: 0.5rem;
  }

  .audit-visual-image {
    border-radius: calc(1.8rem - 0.25rem) calc(1.8rem - 0.25rem) 0 0;
  }

  .audit-visual figcaption {
    border-radius: 0 0 calc(1.8rem - 0.25rem) calc(1.8rem - 0.25rem);
  }

  .audit-visual-image img {
    min-height: 300px;
    max-height: 430px;
  }

  .dialog-shell {
    height: auto;
    min-height: auto;
  }

  .dialog-intro {
    min-height: 330px;
    padding-right: 4.5rem;
  }

  .form-success {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .hero-grid {
    width: min(100% - 1.5rem, 720px);
  }

  .hero-kicker {
    margin-bottom: 1rem;
  }

  .hero .hero-logo {
    width: 190px;
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11.2vw, 3.2rem);
    text-wrap: wrap;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-image-shell {
    border-radius: 1.4rem 1.4rem 4.5rem 1.4rem;
  }

  .hero-image-shell img,
  .hero-image-shade,
  .hero-image-shell::after {
    border-radius: calc(1.4rem - 0.25rem) calc(1.4rem - 0.25rem) calc(4.5rem - 0.25rem) calc(1.4rem - 0.25rem);
  }

  .hero-image-shell img {
    min-height: 360px;
  }

  .hero-proof {
    left: 1rem;
    bottom: 1rem;
  }

  .hero-orbit {
    display: none;
  }

  .hero-assurance {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .service-graphic {
    padding: 1.4rem;
    border-radius: 1.35rem;
  }

  .service-graphic svg {
    min-width: 520px;
    transform: translateX(-30px);
  }

  .audit-visual {
    border-radius: 1.35rem;
  }

  .audit-visual-image img {
    min-height: 240px;
  }

  .consultation-dialog {
    width: calc(100% - 0.75rem);
    max-height: calc(100dvh - 0.75rem);
    border-radius: 1.35rem;
  }

  .dialog-intro {
    min-height: 280px;
    padding: 2rem 1.4rem;
    padding-right: 4rem;
  }

  .consultation-form {
    padding: 1.5rem 1.2rem 1.75rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .dialog-close {
    right: 0.75rem;
    top: 0.75rem;
  }

  .form-success {
    padding: 2.25rem 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-visual,
  .hero-kicker span,
  .hero-orbit,
  .service-graphic .graphic-path,
  .service-graphic circle,
  .submit-loader {
    animation: none !important;
  }

  .hero-visual,
  .hero-image-shell img {
    transform: none !important;
  }

  .service-graphic .graphic-path {
    stroke-dashoffset: 0;
  }

  .service-graphic circle {
    opacity: 1;
    transform: scale(1);
  }
}
