:root {
  --ink: #17120f;
  --muted: #6b625d;
  --cream: #f6f1eb;
  --white: #ffffff;
  --orange: #ff6a2a;
  --orange-soft: #ff8a4f;
  --brown: #4b1f0d;
  --line: #ddd5ce;
  --shadow: 0 24px 70px rgba(33, 17, 10, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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


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

.topbar {
  color: var(--white);
  background: #0d0b0a;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-inner {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 8px 0;
  text-align: center;
}

.site-header {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: #0d0b0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(23, 18, 15, 0.18);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.brand-copy strong {
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.48rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--orange);
  border-radius: 4px;
  color: var(--ink);
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(75, 31, 13, 0.2);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.72rem;
}

.button-dark {
  color: var(--white);
  background: var(--brown);
  border-color: var(--brown);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--orange-soft), var(--orange));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  min-height: 650px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px 40px 82px 0;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(3.2rem, 6.4vw, 6.4rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero-text {
  max-width: 690px;
  margin: 28px 0 0;
  font-size: 1.08rem;
}

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

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 690px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 18, 15, 0.25);
}

.hero-details div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-details strong {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-details span {
  font-size: 0.86rem;
}

.hero-art {
  position: relative;
  min-height: 650px;
}

.orbit {
  position: absolute;
  border: 56px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}

.orbit-one {
  width: 610px;
  height: 610px;
  top: -86px;
  left: 10px;
}

.orbit-two {
  width: 380px;
  height: 380px;
  right: -118px;
  bottom: -40px;
  border-width: 44px;
}

.orbit-three {
  width: 250px;
  height: 250px;
  left: -44px;
  bottom: -72px;
  border-color: rgba(75, 31, 13, 0.95);
  border-width: 40px;
}

.dashboard-card {
  position: absolute;
  z-index: 2;
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.card-main {
  top: 132px;
  right: 20px;
  width: min(330px, 70%);
  transform: rotate(3deg);
}

.card-side {
  right: 160px;
  bottom: 96px;
  width: min(250px, 58%);
  transform: rotate(-4deg);
}

.card-label {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.dashboard-card strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.dashboard-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 120px;
  margin-top: 24px;
  padding: 18px 16px 0;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bar-chart i {
  display: block;
  flex: 1;
  min-width: 8px;
  background: var(--orange);
  border-radius: 3px 3px 0 0;
}

.status-line {
  height: 9px;
  margin-top: 24px;
  overflow: hidden;
  background: var(--cream);
  border-radius: 999px;
}

.status-line span {
  display: block;
  width: 92%;
  height: 100%;
  background: var(--orange);
}

.bookkeeping-stamp {
  position: absolute;
  z-index: 4;
  top: 56px;
  left: 36px;
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  color: var(--white);
  background: var(--brown);
  border: 8px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
  text-align: center;
}

.bookkeeping-stamp span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.bookkeeping-stamp strong {
  font-size: 2.2rem;
  line-height: 0.8;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 28px 0;
}

.trust-grid p {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 700;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.trust-tags span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding: 106px 0;
}

.section-heading h2,
.about-panel h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.9rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.split-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 330px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.featured-card {
  background: var(--cream);
}

.service-number {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card h3 {
  max-width: 420px;
  margin: 56px 0 14px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.service-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.service-link {
  display: inline-block;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-section {
  color: var(--white);
  background: var(--brown);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 650px;
}

.about-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 90px 90px 0;
}

.mini-label {
  margin: 0 0 22px;
  color: var(--orange-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.about-panel p:not(.mini-label) {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  margin-top: 34px;
  color: var(--orange-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.4rem;
}

.about-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px;
  color: var(--ink);
  background: var(--orange);
}

.quote-mark {
  position: absolute;
  top: 54px;
  right: 54px;
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  opacity: 0.2;
}

.about-quote blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.about-quote p {
  margin: 42px 0 2px;
  font-weight: 800;
}

.about-quote span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-section {
  background: var(--cream);
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-grid article {
  min-height: 295px;
  padding: 34px;
  background: var(--white);
  border-top: 4px solid var(--orange);
}

.process-grid article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--brown);
  border-radius: 50%;
  font-weight: 800;
}

.process-grid h3 {
  margin: 56px 0 12px;
  font-size: 1.55rem;
  font-weight: 500;
}

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

.contact-section {
  padding: 104px 0;
  color: var(--white);
  background: #0d0b0a;
}

.contact-grid {
  display: block;
  max-width: 860px;
}

.contact-copy {
  max-width: 760px;
}

.light-eyebrow {
  color: var(--orange-soft);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-list a:hover {
  color: var(--orange-soft);
}




.disclaimer-section {
  padding: 28px 0;
  color: var(--muted);
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.disclaimer-inner {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.disclaimer-inner strong {
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.disclaimer-inner p {
  max-width: 880px;
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.65;
}

@media (max-width: 1000px) {
  .nav-wrap {
    flex-wrap: wrap;
    padding: 10px 0;
  }


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

  .hero-copy {
    padding-right: 0;
  }

  .hero-art {
    min-height: 510px;
  }

  .orbit-one {
    left: 50%;
    transform: translateX(-50%);
  }

  .bookkeeping-stamp {
    left: 8%;
  }

  .card-main {
    right: 10%;
  }

  .card-side {
    right: 38%;
  }

  .split-heading,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 24px;
  }

  .about-panel {
    padding: 90px 0;
  }

  .about-quote {
    min-height: 520px;
    margin: 0 -20px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-inner span:last-child {
    display: none;
  }

  .nav-wrap {
    gap: 16px;
    min-height: 72px;
  }

  .brand-copy strong {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  .nav-wrap > .button {
    display: none;
  }


  .hero-grid,
  .hero-art {
    min-height: auto;
  }

  .hero-copy {
    padding: 72px 0 58px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15vw, 5.1rem);
  }

  .hero-text {
    font-size: 1rem;
  }

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

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

  .hero-art {
    min-height: 470px;
  }

  .orbit {
    border-width: 38px;
  }

  .orbit-one {
    width: 430px;
    height: 430px;
    top: 18px;
  }

  .orbit-two {
    width: 250px;
    height: 250px;
  }

  .orbit-three {
    width: 190px;
    height: 190px;
    border-width: 30px;
  }

  .bookkeeping-stamp {
    top: 30px;
    left: 0;
    width: 128px;
    height: 128px;
  }

  .card-main {
    top: 116px;
    right: 0;
    width: 78%;
  }

  .card-side {
    right: 24%;
    bottom: 30px;
    width: 64%;
  }

  .trust-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 18px;
  }

  .trust-tags {
    justify-content: flex-start;
  }

  .section,
  .contact-section {
    padding: 78px 0;
  }

  .service-card {
    min-height: auto;
    padding: 28px;
  }

  .service-card h3 {
    margin-top: 38px;
  }

  .about-panel {
    padding: 78px 0;
  }

  .about-quote {
    min-height: 440px;
    padding: 38px 28px;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .disclaimer-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
