:root {
  --ink: #121310;
  --ink-soft: #191a17;
  --paper: #f3f0e9;
  --paper-muted: #d7d3cb;
  --sand: #ded5c7;
  --accent: #aa7b48;
  --accent-bright: #c19059;
  --line: rgba(243, 240, 233, 0.14);
  --dark-line: rgba(18, 19, 16, 0.2);
  --shell: min(1440px, calc(100% - 8rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 5px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(170, 123, 72, 0.36);
  position: relative;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 150px;
  height: 3px;
  background: var(--accent);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(1.15rem, 1.9vw, 1.7rem);
  letter-spacing: -0.025em;
}

.brand strong {
  font-weight: 540;
}

.brand-divider {
  width: 2px;
  height: 36px;
  background: var(--accent);
}

.brand > span:last-child {
  color: var(--paper-muted);
  font-weight: 350;
}

nav {
  display: flex;
  gap: clamp(2rem, 4vw, 4.4rem);
  font-size: 1rem;
}

nav a {
  position: relative;
  padding-block: 0.75rem;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 180ms ease;
}

nav a:hover::after {
  width: 100%;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 58% 42%;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 6vw 5rem 0;
}

.eyebrow,
.section-label {
  margin: 0 0 2rem;
  color: var(--accent-bright);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(4.2rem, 7vw, 7rem);
  font-weight: 430;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero-intro {
  max-width: 620px;
  margin: 2rem 0 2.4rem;
  color: var(--paper-muted);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.5;
}

.button {
  min-width: 410px;
  min-height: 74px;
  padding: 0 2.6rem;
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.85rem;
  font-weight: 580;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.button span {
  font-size: 1.8rem;
  transition: transform 180ms ease;
}

.button:hover {
  background: var(--accent);
  color: var(--ink);
}

.button:hover span {
  transform: translateX(8px);
}

.hero-specializations {
  border-left: 1px solid var(--line);
  padding: 5.6rem 0 0 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-specializations .section-label {
  margin-bottom: 1.2rem;
}

.specialization-row {
  min-height: 106px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  padding: 0 1rem 0 0;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  transition: background 180ms ease, padding 180ms ease;
}

.specialization-row:hover {
  background: rgba(255, 255, 255, 0.025);
  padding-left: 0.7rem;
}

.specialization-number {
  color: var(--accent-bright);
  font-size: 1.6rem;
}

.specialization-row > span:last-child {
  color: var(--accent-bright);
  font-size: 2rem;
  transition: transform 180ms ease;
}

.specialization-row:hover > span:last-child {
  transform: translateX(7px);
}

.hero-footer {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paper-muted);
  font-size: 0.95rem;
}

.hero-footer a {
  color: var(--accent-bright);
  font-size: 2rem;
  transform: rotate(90deg);
}

.section {
  padding: 9rem 0;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-light .section-label,
.section-sand .section-label {
  color: #845c32;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2.2fr 1.1fr;
  align-items: start;
  gap: 4vw;
  padding-bottom: 5rem;
}

.section-heading h2,
.approach-intro h2,
.fee-layout h2,
.contact h2 {
  margin: 0;
  font-size: clamp(3.5rem, 6vw, 6.7rem);
  font-weight: 440;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading > p:last-child,
.approach-intro > p:last-child {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.service-card {
  min-height: 340px;
  padding: 2.2rem;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  scroll-margin-top: 2rem;
}

.card-number {
  color: #845c32;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 4.5rem 0 1.4rem;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 520;
  letter-spacing: -0.035em;
}

.service-card p {
  max-width: 430px;
  margin: 0;
  color: #474941;
  font-size: 1rem;
  line-height: 1.65;
}

.section-dark {
  background: var(--ink-soft);
}

.approach-layout,
.fee-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}

.approach-intro {
  position: sticky;
  top: 3rem;
  align-self: start;
}

.approach-intro > p:last-child {
  max-width: 590px;
  margin-top: 3rem;
  color: var(--paper-muted);
}

.principle {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  padding: 2.4rem 0 3.2rem;
  border-top: 1px solid var(--line);
}

.principle > span {
  color: var(--accent-bright);
  font-size: 1.1rem;
}

.principle h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 480;
}

.principle p {
  max-width: 560px;
  margin: 0;
  color: var(--paper-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-sand {
  background: var(--sand);
  color: var(--ink);
}

.fee-copy {
  padding-top: 0.4rem;
}

.fee-lead {
  margin: 0 0 2rem;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.45;
}

.fee-copy > p:not(.fee-lead):not(.fee-note) {
  max-width: 670px;
  color: #474941;
  font-size: 1.05rem;
  line-height: 1.7;
}

.fee-examples {
  margin-top: 3.5rem;
  border-top: 1px solid var(--dark-line);
}

.fee-examples > div {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--dark-line);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.6rem 2rem;
}

.fee-examples strong {
  text-align: right;
  font-weight: 600;
}

.fee-examples small {
  grid-column: 1 / -1;
  color: #5a5b54;
  line-height: 1.5;
}

.fee-note {
  margin: 1.4rem 0 0;
  color: #5a5b54;
  font-size: 0.85rem;
  line-height: 1.6;
}

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

.contact-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 5.5rem;
}

.circle-arrow {
  width: 130px;
  height: 130px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent-bright);
  font-size: 2.8rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.circle-arrow:hover {
  background: var(--accent);
  color: var(--ink);
  transform: rotate(-8deg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  border-top: 1px solid var(--line);
}

.contact-grid > div {
  min-height: 190px;
  padding: 2rem 2rem 1rem 0;
  border-right: 1px solid var(--line);
}

.contact-grid > div + div {
  padding-left: 2rem;
}

.contact-grid > div:last-child {
  border-right: 0;
}

.contact-label {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--accent-bright);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-grid a,
.contact-grid address,
.contact-grid p {
  margin: 0;
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  font-style: normal;
  line-height: 1.55;
}

.contact-grid a {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 0.35rem;
}

.site-footer {
  min-height: 90px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #999a92;
  font-size: 0.85rem;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 3rem, 960px);
  }

  .site-header {
    min-height: 100px;
  }

  nav {
    gap: 1.6rem;
  }

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

  .hero-copy {
    min-height: 650px;
    padding-right: 0;
  }

  .hero-specializations {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 4rem 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading .section-label {
    margin-bottom: 0;
  }

  .section-heading > p:last-child {
    max-width: 680px;
  }

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

  .approach-layout,
  .fee-layout {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .approach-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 2rem);
  }

  .site-header {
    min-height: 88px;
  }

  .brand {
    gap: 10px;
    font-size: 1rem;
  }

  .brand-divider {
    height: 26px;
  }

  nav {
    display: none;
  }

  .hero-copy {
    min-height: auto;
    padding: 5.5rem 0;
  }

  .eyebrow {
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 5.4rem);
  }

  .hero-intro {
    font-size: 1.05rem;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 68px;
    padding-inline: 1.4rem;
    font-size: 0.75rem;
  }

  .hero-specializations {
    padding: 3.5rem 0;
  }

  .specialization-row {
    grid-template-columns: 50px 1fr auto;
    min-height: 86px;
    font-size: 1.15rem;
  }

  .specialization-number {
    font-size: 1.05rem;
  }

  .hero-footer {
    font-size: 0.8rem;
  }

  .section {
    padding: 6rem 0;
  }

  .section-heading,
  .contact-heading {
    padding-bottom: 3.5rem;
  }

  .section-heading h2,
  .approach-intro h2,
  .fee-layout h2,
  .contact h2 {
    font-size: clamp(3.1rem, 14vw, 4.7rem);
  }

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

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

  .contact-heading {
    align-items: flex-start;
    gap: 2rem;
    flex-direction: column;
  }

  .circle-arrow {
    width: 86px;
    height: 86px;
    font-size: 2rem;
  }

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

  .contact-grid > div,
  .contact-grid > div + div {
    min-height: auto;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-label {
    margin-bottom: 1rem;
  }

  .fee-examples > div {
    grid-template-columns: 1fr;
  }

  .fee-examples strong {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
