@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #151922;
  --ink-soft: #4d5564;
  --paper: #f7f5ef;
  --paper-deep: #ebe7dc;
  --line: #d6d0c4;
  --steel: #263344;
  --steel-2: #1d2633;
  --copper: #b7754f;
  --white: #ffffff;
  --focus: #7b4f36;
  --shadow: 0 24px 70px rgba(21, 25, 34, 0.16);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 10px clamp(20px, 4vw, 64px);
  color: var(--white);
  background: rgba(21, 25, 34, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 172px;
  height: 70px;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover,
.header-cta:hover,
.site-footer a:hover {
  color: var(--white);
}

.header-cta {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(104px, 12vh, 128px) clamp(22px, 6vw, 88px) clamp(42px, 6vh, 64px);
  color: var(--white);
}

.hero picture,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 20, 27, 0.92) 0%, rgba(16, 20, 27, 0.72) 44%, rgba(16, 20, 27, 0.18) 100%),
    linear-gradient(0deg, rgba(16, 20, 27, 0.42), rgba(16, 20, 27, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}

.eyebrow {
  max-width: 760px;
  margin: 0 0 clamp(14px, 2vw, 20px);
  color: var(--copper);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 1080px;
  font-size: clamp(36px, 4.3vw, 56px);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: clamp(20px, 1.55vw, 23px);
  line-height: 1.2;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 780px;
  margin: clamp(20px, 3vw, 28px) 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.55vw, 20px);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero .eyebrow {
  font-size: clamp(18px, 1.6vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--copper);
}

.button.primary:hover {
  background: #9b5f3e;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--steel);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-band div {
  min-height: 138px;
  padding: 30px clamp(20px, 4vw, 58px);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.signal-band strong,
.signal-band span {
  display: block;
}

.signal-band strong {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1;
}

.signal-band span {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: clamp(76px, 9vw, 108px) clamp(20px, 6vw, 88px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(170px, 230px) minmax(260px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
}

.portrait-placeholder {
  position: relative;
  display: grid;
  align-items: end;
  width: min(100%, 220px);
  aspect-ratio: 4 / 5;
  padding: 18px;
  overflow: hidden;
  color: var(--copper);
  background:
    linear-gradient(145deg, rgba(244, 238, 230, 0.98), rgba(235, 231, 220, 0.92)),
    var(--paper-deep);
  border: 1px solid #dfc8b8;
  border-radius: 8px;
}

.portrait-placeholder::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(122, 75, 49, 0.26);
  border-radius: 999px 999px 48% 48%;
}

.portrait-placeholder::after {
  content: "";
  position: absolute;
  right: -24%;
  bottom: -16%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(122, 75, 49, 0.22);
  border-radius: 50%;
}

.portrait-placeholder span {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.intro-copy {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.3vw, 19px);
  text-wrap: pretty;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.muted {
  background: var(--paper-deep);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.section-heading .eyebrow {
  flex: 0 0 190px;
  margin-bottom: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 300px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(21, 25, 34, 0.03);
}

.service-index {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
}

.service-card p,
.timeline-item p,
.contact-panel p {
  color: var(--ink-soft);
}

.approach {
  background: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.timeline-item {
  padding: 30px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.timeline-item:last-child {
  border-right: 0;
}

.timeline-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 36px;
  color: var(--white);
  background: var(--steel);
  border-radius: 6px;
}

.timeline-icon svg {
  width: 26px;
  height: 26px;
}

.timeline-icon path,
.timeline-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: 82px clamp(20px, 9vw, 130px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(21, 25, 34, 0.9), rgba(21, 25, 34, 0.62)),
    url("assets/hero-boardroom-1440.webp") center / cover no-repeat;
}

.quote-band blockquote {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0;
  font-size: clamp(28px, 3.8vw, 50px);
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact {
  background: var(--paper);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 7vw, 90px);
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pro-form {
  display: grid;
  gap: 18px;
}

.pro-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pro-form-field,
.pro-form-privacy {
  display: grid;
  gap: 8px;
}

.pro-form-field label,
.pro-form-privacy > label {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 12px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.pro-form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-transform: none;
  line-height: 1.45;
}

.pro-form-checkbox-label input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--copper);
}

.pro-form-checkbox-label a {
  color: var(--focus);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.error-msg {
  color: #a43d2b;
  font-size: 13px;
  font-weight: 700;
}

.is-invalid {
  border-color: #a43d2b;
}

.pro-form-status {
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 14px;
}

.pro-form-status strong,
.pro-form-status span {
  display: block;
}

.pro-form-status.success {
  color: #5a3926;
  background: #f4eee6;
  border: 1px solid #dfc8b8;
}

.pro-form-status.error {
  color: #6f2317;
  background: #f8e7e2;
  border: 1px solid #e5bab0;
}

.pro-form-status.info {
  color: #2f3f56;
  background: #e7edf5;
  border: 1px solid #c7d2e1;
}

.pro-form-submit.is-loading {
  cursor: wait;
  opacity: 0.72;
}

.pro-form-submit {
  min-height: 56px;
  font-size: 18px;
  line-height: 1.15;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(183, 117, 79, 0.28);
  outline-offset: 3px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(260px, auto) auto;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink);
  font-size: 14px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.footer-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.legal-page {
  background: var(--paper);
  padding-top: 88px;
}

.legal-hero {
  padding: 82px clamp(20px, 6vw, 88px) 42px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  color: var(--ink);
}

.legal-content {
  display: grid;
  gap: 16px;
  max-width: 980px;
  padding: 56px clamp(20px, 6vw, 88px) 96px;
}

.legal-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.legal-card p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: var(--focus);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-raw {
  display: block;
  max-width: 900px;
}

.legal-raw h1 {
  margin: 0 0 34px;
  color: var(--ink);
}

.legal-raw h2 {
  margin: 34px 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.legal-raw p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.legal-raw .seal {
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.legal-verbatim {
  margin: 0;
  color: var(--ink-soft);
  font: inherit;
  line-height: 1.72;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.legal-note {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  color: #5a3926;
  background: #f4eee6;
  border: 1px solid #dfc8b8;
  border-radius: 8px;
}

.legal-note strong,
.legal-note span {
  display: block;
}

.legal-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
}

.legal-list dt {
  color: var(--ink);
  font-weight: 800;
}

.legal-list dd {
  margin: 0;
  color: var(--ink-soft);
}

.legal-basis {
  padding: 12px 14px;
  background: #fbfaf7;
  border-left: 4px solid var(--copper);
  border-radius: 0 6px 6px 0;
}

mark {
  padding: 2px 5px;
  color: #5a3926;
  background: #f4eee6;
  border-radius: 4px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    max-width: none;
  }

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

  .timeline-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-item:last-child {
    border-bottom: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 108px 20px 50px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.1;
  }

  .hero-copy {
    max-width: 34rem;
    font-size: 17px;
  }

  .eyebrow {
    font-size: 15px;
    line-height: 1.35;
  }

  .hero .eyebrow {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .signal-band {
    grid-template-columns: 1fr;
  }

  .signal-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .section {
    padding: 76px 20px;
  }

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

  .service-card {
    min-height: 250px;
  }

  .quote-band {
    padding: 64px 20px;
  }

  .contact-panel {
    padding: 24px;
  }

  .legal-hero {
    padding: 62px 20px 34px;
  }

  .legal-content {
    padding: 36px 20px 70px;
  }

  .legal-card {
    padding: 22px;
  }

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