:root {
  --ink: #071a1d;
  --ink2: #0d292b;
  --cream: #f4efe5;
  --paper: #fffdf7;
  --gold: #c79a45;
  --sage: #b9cfbd;
  --muted: #687573;
  --line: rgba(7, 26, 29, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
}
h1 {
  font-size: clamp(3rem, 6.6vw, 6.8rem);
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
  letter-spacing: -0.045em;
}
.lead {
  font-size: 1.08rem;
  color: #3d4a48;
  max-width: 620px;
}
.topbar {
  background: var(--gold);
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 800;
  text-align: center;
  padding: 8px;
  letter-spacing: 0.04em;
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.nav-shell {
  background: var(--ink);
  color: #fff;
}
.brand {
  font-family: var(--serif);
  font-size: 1.55rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 27px;
  height: 27px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  display: grid;
  place-items: center;
}
.brand-mark:after {
  content: "V";
  transform: rotate(-45deg);
  font-size: 0.75rem;
  color: var(--gold);
}
.links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.84rem;
}
.links a {
  opacity: 0.78;
}
.links a:hover,
.links a.active {
  opacity: 1;
  color: #e8c178;
}
.nav-cta,
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--gold);
  padding: 14px 20px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.82rem;
  border: 0;
  cursor: pointer;
}
.menu {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 1.6rem;
}
.hero {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 64px 0 90px;
}
.hero:after {
  content: "";
  position: absolute;
  right: -12vw;
  top: -40%;
  width: 60vw;
  height: 60vw;
  border: 1px solid rgba(199, 154, 69, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(199, 154, 69, 0.035),
    0 0 0 180px rgba(199, 154, 69, 0.025);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 em {
  color: var(--sage);
  font-style: italic;
}
.hero-copy {
  color: #b9c3c1;
  max-width: 620px;
  font-size: 1.08rem;
  margin: 25px 0;
}
.proof {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}
.proof strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: #fff;
  display: block;
}
.proof span {
  font-size: 0.75rem;
  color: #91a09d;
}
.audit-card {
  background: var(--paper);
  color: var(--ink);
  padding: 32px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
  position: relative;
}
.audit-card:before {
  content: "CONFIDENTIAL";
  position: absolute;
  right: 16px;
  top: 15px;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  color: #8c9693;
}
.audit-card h3 {
  font-size: 1.9rem;
  margin: 10px 0 8px;
}
.audit-card p {
  font-size: 0.82rem;
  color: var(--muted);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
}
.field input,
.field select,
.field textarea {
  border: 1px solid #ccd1cc;
  background: white;
  padding: 13px;
  font: inherit;
  font-size: 0.86rem;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}
.audit-card button {
  width: 100%;
  margin-top: 14px;
}
.fine {
  font-size: 0.64rem !important;
  text-align: center;
}
.logo-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #66726f;
}
.logos span {
  font-family: var(--serif);
  font-weight: bold;
  font-size: 1.05rem;
}
.section {
  padding: 105px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 54px;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 250px;
  transition: 0.25s;
}
.service:hover {
  background: var(--paper);
  transform: translateY(-4px);
}
.service .num {
  color: var(--gold);
  font-size: 0.72rem;
}
.service h3 {
  font-size: 1.65rem;
  margin: 44px 0 12px;
}
.service p {
  font-size: 0.9rem;
  color: var(--muted);
}
.case-section {
  background: var(--ink);
  color: #fff;
}
.case-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.case-card {
  background: #0e2a2d;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bars {
  height: 240px;
  display: flex;
  align-items: end;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 12px;
}
.bar {
  flex: 1;
  background: linear-gradient(#d9b467, #b18235);
  height: var(--h);
  position: relative;
}
.bar:before {
  content: attr(data-v);
  position: absolute;
  top: -27px;
  width: 100%;
  text-align: center;
  font-size: 0.72rem;
  font-weight: bold;
}
.bar-labels {
  display: flex;
  gap: 14px;
  padding: 11px 12px 0;
}
.bar-labels span {
  flex: 1;
  text-align: center;
  font-size: 0.64rem;
  color: #94a5a1;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}
.metric {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 18px;
}
.metric strong {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--sage);
  display: block;
}
.metric span {
  font-size: 0.65rem;
  color: #99aaa6;
}
.case-copy h2 {
  margin: 10px 0 22px;
}
.case-copy p {
  color: #a9b7b4;
}
.link-arrow {
  color: #e5bb6c;
  font-size: 0.78rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.testimonials {
  background: var(--paper);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote {
  border: 1px solid var(--line);
  background: #fff;
  padding-bottom: 26px;
}
.portrait {
  height: 230px;
  background-image: url("assets/client-triptych.png");
  background-size: 300% 100%;
  background-position: var(--pos) center;
}
.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  padding: 24px 24px 8px;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 5px 24px 22px;
}
.quote cite {
  font-style: normal;
  font-size: 0.73rem;
  font-weight: bold;
  margin: 0 24px;
}
.cta-band {
  padding: 70px 0;
  background: var(--gold);
}
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}
.btn-dark {
  background: var(--ink);
  color: white;
}
.footer {
  background: #041214;
  color: #c1cbc9;
  padding: 65px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 50px;
}
.footer h4 {
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer a {
  display: block;
  font-size: 0.82rem;
  margin: 9px 0;
  color: #91a09d;
}
.footer p {
  font-size: 0.84rem;
  color: #91a09d;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 22px;
  font-size: 0.68rem;
  color: #657572;
}
.page-hero {
  background: var(--ink);
  color: white;
  padding: 85px 0 100px;
}
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  max-width: 900px;
}
.page-hero p {
  color: #afbcba;
  max-width: 620px;
  font-size: 1.08rem;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.stat {
  background: var(--paper);
  padding: 42px 28px;
}
.stat strong {
  display: block;
  font: 3rem var(--serif);
  color: #9a6c22;
}
.team-grid,
.client-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 30px;
}
.avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: grid;
  place-items: center;
  font: 1.5rem var(--serif);
}
.card h3 {
  font-size: 1.5rem;
  margin: 20px 0 8px;
}
.card p {
  color: var(--muted);
  font-size: 0.88rem;
}
.result {
  font: 2.4rem var(--serif);
  color: #98702c;
}
.tag {
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.article-meta {
  font-size: 0.68rem;
  color: var(--muted);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 75px;
}
.contact-form {
  background: var(--paper);
  padding: 38px;
  border: 1px solid var(--line);
}
.success {
  display: none;
  background: #dfeee3;
  padding: 12px;
  margin-top: 12px;
  font-size: 0.82rem;
}
.success.show {
  display: block;
}
@media (max-width: 800px) {
  .links {
    display: none;
    position: absolute;
    top: 112px;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 25px 20px;
    flex-direction: column;
    z-index: 9;
  }
  .links.open {
    display: flex;
  }
  .menu {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .hero-grid,
  .case-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 40px;
  }
  .hero-grid {
    gap: 45px;
  }
  .services,
  .testimonial-grid,
  .team-grid,
  .client-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 75px 0;
  }
  .section-head,
  .cta-band .wrap {
    align-items: start;
    flex-direction: column;
  }
  .logos {
    overflow: auto;
    justify-content: start;
  }
  .proof {
    gap: 18px;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .case-grid {
    gap: 40px;
  }
  .portrait {
    height: 300px;
  }
  .quote:nth-child(2) .portrait {
    background-position: center;
  }
  .quote:nth-child(3) .portrait {
    background-position: right;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
}
/* .logo {
    height: 50px;
    width: auto;
} */
 .brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 72px;     
    width: auto;
    display: block;
}