:root {
  --ink: #11100e;
  --muted: #6c665f;
  --paper: #f8f7f3;
  --white: #ffffff;
  --line: rgba(17, 16, 14, 0.2);
  --dark: #090807;
  --wood: #352018;
  --accent: #7a4518;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-header {
  position: absolute;
  top: 18px;
  right: max(18px, calc((100vw - 1280px) / 2 + 28px));
  left: max(18px, calc((100vw - 1280px) / 2 + 28px));
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  color: var(--white);
  font-size: 0.8rem;
}

.brand,
.site-nav,
.nav-cta {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
}

.brand-mark {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
}

.brand-mark svg {
  width: 25px;
  height: 25px;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 56px);
}

.site-nav a {
  opacity: 0.84;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  justify-self: end;
  min-height: 34px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 220ms var(--ease);
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.hero,
.section {
  width: 100%;
  margin: 0;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100dvh - 28px));
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, #080807 0%, rgba(16, 12, 10, 0.98) 42%, rgba(58, 33, 24, 0.87) 76%, #080807 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 64px);
}

.hero-image {
  position: absolute;
  top: 92px;
  left: 52%;
  width: clamp(220px, 24vw, 320px);
  height: calc(100% - 130px);
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.66;
  filter: saturate(0.9) contrast(1.12);
  transform: translateX(-50%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.55), rgba(8, 8, 7, 0.12) 58%, rgba(8, 8, 7, 0.6)),
    linear-gradient(0deg, rgba(8, 8, 7, 0.68), rgba(8, 8, 7, 0.04) 58%, rgba(8, 8, 7, 0.24));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.58fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: end;
  min-height: inherit;
  padding: clamp(110px, 13vw, 150px) clamp(30px, 7vw, 96px) 82px;
}

.place {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
}

h1,
h2,
h3,
p,
address {
  margin: 0;
}

h1,
h2 {
  font-weight: 430;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.3rem, 5vw, 3.75rem);
  line-height: 1.03;
}

.hero-copy > p:not(.place) {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

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

.primary-button,
.secondary-button,
.contact-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.86rem;
  font-weight: 650;
  border: 1px solid transparent;
}

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

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

.contact-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.contact-card a {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.section {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(34px, 7vw, 110px);
  padding: clamp(64px, 9vw, 118px) clamp(24px, 5vw, 72px);
  background: var(--white);
}

.section + .section {
  margin-top: 0;
}

.section-label {
  display: grid;
  align-content: start;
  gap: 28px;
  color: var(--muted);
  font-size: 0.78rem;
}

.section-label span,
.section-kicker {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-label img {
  width: 72px;
  aspect-ratio: 1;
  object-fit: cover;
}

.intro h2,
.section-head h2,
.process h2,
.contact h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.intro p,
.contact p {
  max-width: 710px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.arrow-link {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--accent);
}

.arrow-link svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.practice-list {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.practice-list article {
  display: grid;
  grid-template-columns: 70px minmax(170px, 0.45fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.practice-list span {
  font-size: 0.9rem;
}

.practice-list h3,
.process-grid h3 {
  font-size: 1.15rem;
  font-weight: 560;
}

.practice-list p,
.process-grid p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.quote-section {
  width: 100%;
  margin: 0;
  padding: clamp(54px, 8vw, 104px) clamp(24px, 5vw, 72px);
  background: var(--white);
}

.quote-rule {
  width: min(100%, 860px);
  height: 1px;
  margin: 0 0 clamp(30px, 5vw, 58px) auto;
  background: var(--line);
}

.quote-section blockquote {
  max-width: 1000px;
  margin: 0 auto;
}

.quote-section p {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 430;
  line-height: 1.08;
  letter-spacing: 0;
}

.testimonials-section {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(34px, 7vw, 110px);
  width: 100%;
  min-height: min(760px, 86vh);
  margin: 0;
  padding: clamp(68px, 10vw, 132px) clamp(24px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.96), rgba(35, 23, 18, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 64px);
}

.testimonials-label {
  display: grid;
  align-content: start;
  gap: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.testimonials-label span {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.testimonials-label small {
  max-width: 170px;
  line-height: 1.55;
}

.testimonials-content {
  display: grid;
  align-content: space-between;
  min-height: 100%;
}

.testimonials-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding-bottom: clamp(48px, 7vw, 86px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.testimonials-head h2 {
  max-width: 840px;
  font-size: clamp(2rem, 4.6vw, 3.75rem);
  font-weight: 430;
  line-height: 1.06;
  letter-spacing: 0;
}

.testimonial-controls {
  display: inline-flex;
  gap: 10px;
}

.testimonial-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.testimonial-slider {
  position: relative;
  min-height: 270px;
  padding: clamp(42px, 6vw, 74px) 0 30px;
}

.testimonial-slide {
  display: grid;
  gap: 32px;
}

.testimonial-slide[hidden] {
  display: none;
}

.testimonial-slide blockquote {
  max-width: 1000px;
  margin: 0;
}

.testimonial-slide p {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.45rem);
  font-weight: 430;
  line-height: 1.11;
  letter-spacing: 0;
}

.testimonial-slide footer {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.testimonial-dots button {
  min-width: 52px;
  min-height: 40px;
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.testimonial-dots button.is-active,
.testimonial-dots button:hover,
.testimonial-dots button:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-grid article {
  min-height: 236px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid span {
  display: grid;
  width: 32px;
  height: 32px;
  margin-bottom: 42px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-size: 0.82rem;
}

.process-grid p {
  margin-top: 14px;
}

.contact {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: start;
  background: #f1f2ef;
  padding-bottom: clamp(74px, 10vw, 132px);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 0.78rem;
}

.contact-actions {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-actions a {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
}

.contact-actions button {
  width: fit-content;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .site-nav {
    position: fixed;
    inset: 74px 18px auto;
    display: grid;
    padding: 18px;
    color: var(--ink);
    background: var(--white);
    text-shadow: none;
  }

  .menu-open .site-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .hero-image {
    left: 72%;
    width: 230px;
    opacity: 0.45;
  }

  .contact-card {
    max-width: 520px;
  }

  .section,
  .testimonials-section,
  .contact {
    grid-template-columns: 1fr;
    padding: 58px 24px;
  }

  .practice-list article {
    grid-template-columns: 52px 1fr;
  }

  .practice-list p {
    grid-column: 2;
  }

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

  .testimonials-section {
    min-height: auto;
  }

  .testimonials-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero,
  .section,
  .testimonials-section {
    width: 100%;
    margin-top: 0;
  }

  .site-header {
    top: 16px;
    right: 18px;
    left: 18px;
  }

  .brand span:last-child {
    max-width: 150px;
  }

  .hero-grid {
    padding: 104px 24px 54px;
  }

  h1 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .intro h2,
  .section-head h2,
  .process h2,
  .contact h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .hero-actions {
    display: grid;
  }

  .quote-section {
    width: 100%;
    padding: 48px 24px;
  }

  .quote-section p {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .testimonials-section {
    padding: 54px 24px;
  }

  .testimonials-head h2 {
    font-size: clamp(1.85rem, 9vw, 2.75rem);
  }

  .testimonial-slider {
    min-height: 360px;
  }

  .testimonial-slide p {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .contact-card {
    padding: 22px;
  }
}
