:root {
  --paper: #f7f1e6;
  --ink: #18202b;
  --muted: #667085;
  --line: #d9cdbb;
  --gold: #b88739;
  --green: #123b35;
  --white: #fffaf1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(24, 32, 43, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 32, 43, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

a {
  color: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 5vw;
  background: rgba(247, 241, 230, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 800;
}

.menu {
  display: flex;
  gap: 24px;
  font-family: Arial, sans-serif;
}

.menu a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.94rem;
}

.menu-button {
  display: none;
}

.hero {
  min-height: 720px;
  display: grid;
  align-content: center;
  padding: 90px 5vw;
  border-bottom: 1px solid var(--line);
}

.hero-label,
.section-title span,
.method-copy span,
.contact span {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1150px;
  margin: 22px 0 28px;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h3 {
  font-size: 1.5rem;
}

p,
li,
address {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.03rem;
}

.hero p {
  max-width: 760px;
  font-size: 1.24rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions a,
button {
  display: inline-flex;
  border: 1px solid var(--green);
  border-radius: 0;
  padding: 15px 22px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: 800;
  color: var(--white);
  background: var(--green);
  cursor: pointer;
}

.hero-actions a:nth-child(2) {
  color: var(--green);
  background: transparent;
}

.statement {
  padding: 48px 5vw;
  background: var(--green);
}

.statement p {
  max-width: 1180px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.35;
}

.section,
.contact,
footer {
  padding: 86px 5vw;
}

.section-title {
  max-width: 1100px;
  margin-bottom: 44px;
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.advisory-grid article {
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.55);
}

.number {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.industries {
  background: var(--white);
}

.industry-list {
  display: grid;
  gap: 18px;
}

.industry-list div {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.industry-list strong {
  font-size: 1.25rem;
}

.method {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  background: #efe4d2;
}

.steps {
  background: var(--ink);
  padding: 26px;
  color: var(--white);
}

.step {
  width: 100%;
  margin-bottom: 10px;
  justify-content: flex-start;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.step.active {
  background: var(--gold);
  color: var(--ink);
}

.step-panel {
  margin-top: 22px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
}

.step-panel p {
  color: #d7dce2;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.insight-grid article {
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.quote {
  background: var(--green);
}

blockquote {
  max-width: 1050px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 0.6fr 0.9fr;
  gap: 34px;
  align-items: start;
}

form {
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 132px;
}

footer {
  border-top: 1px solid var(--line);
}

.fade {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.65s ease;
}

.fade.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .menu-button {
    display: inline-flex;
    padding: 10px 14px;
  }

  .menu {
    display: none;
    position: absolute;
    left: 5vw;
    right: 5vw;
    top: 72px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    flex-direction: column;
  }

  .menu.open {
    display: flex;
  }

  .advisory-grid,
  .method,
  .insight-grid,
  .contact,
  .industry-list div {
    grid-template-columns: 1fr;
  }
}
