:root {
  --ink: #090a09;
  --ink-soft: #141612;
  --paper: #f2efe8;
  --paper-deep: #e9e4da;
  --gold: #c59a45;
  --gold-bright: #e1bd6c;
  --line-dark: rgba(242, 239, 232, .16);
  --line-light: rgba(9, 10, 9, .16);
  --muted-dark: #a9aaa3;
  --muted-light: #5d5e57;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: .025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 112px;
  padding: 0 clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--line-dark);
}
.brand { display: flex; flex-direction: column; width: max-content; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  color: var(--gold-bright);
  font-size: 22px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.brand-sub {
  margin-top: 8px;
  font-size: 8px;
  letter-spacing: .54em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 44px); }
.site-nav a {
  position: relative;
  color: #dad9d3;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right .3s ease;
}
.site-nav a:hover::after { right: 0; }
.header-call { justify-self: end; display: flex; flex-direction: column; align-items: flex-end; line-height: 1.35; }
.header-call span { color: var(--muted-dark); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.header-call strong { color: var(--gold-bright); font-size: 13px; font-weight: 500; letter-spacing: .06em; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 170px clamp(24px, 8.5vw, 140px) 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 44%, rgba(197, 154, 69, .08), transparent 26%),
    linear-gradient(110deg, #090a09 0%, #090a09 58%, #10110f 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: min(42vw, 640px);
  aspect-ratio: 1;
  right: -7vw;
  top: 50%;
  translate: 0 -45%;
  border: 1px solid rgba(197, 154, 69, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(197,154,69,.018), 0 0 0 160px rgba(197,154,69,.012);
}
.hero-lines { position: absolute; inset: 0; opacity: .38; }
.hero-lines::before, .hero-lines::after {
  content: "";
  position: absolute;
  top: 112px;
  bottom: 0;
  width: 1px;
  background: var(--line-dark);
}
.hero-lines::before { left: 33.333%; }
.hero-lines::after { left: 66.666%; }
.hero-content { position: relative; z-index: 2; max-width: 1000px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow span { display: block; width: 36px; height: 1px; background: currentColor; }
.eyebrow-dark { color: #806126; }
.hero h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(57px, 7.7vw, 122px); }
.hero-title-mobile { display: none; }
.hero h1 em, .criminal h2 em { color: var(--gold-bright); font-weight: 500; }
.hero-copy {
  max-width: 570px;
  margin: 38px 0 0 8px;
  color: #babbb5;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 34px; margin: 44px 0 0 8px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s;
}
.button-gold { background: var(--gold); color: #080908; }
.button-gold:hover { background: var(--gold-bright); }
.text-link {
  padding: 12px 0;
  border-bottom: 1px solid rgba(225, 189, 108, .45);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-link span { margin-left: 16px; color: var(--gold-bright); }
.hero-aside {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 80px);
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #858680;
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-aside-rule { width: 1px; height: 42px; background: var(--gold); }
.hero-marker {
  position: absolute;
  z-index: 1;
  right: 11.5vw;
  top: 50%;
  translate: 0 -38%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(225, 189, 108, .12);
}
.hero-marker strong { font-family: var(--serif); font-size: clamp(250px, 32vw, 520px); font-weight: 500; line-height: .7; }
.hero-marker span { color: rgba(225, 189, 108, .4); font-size: 8px; letter-spacing: .55em; text-transform: uppercase; }

.section-light { background: var(--paper); color: var(--ink); }
.intro {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(60px, 10vw, 180px);
  padding: 140px clamp(24px, 8.5vw, 140px);
}
.section-number {
  position: absolute;
  top: 48px;
  right: clamp(24px, 5vw, 80px);
  color: #9b978d;
  font-family: var(--serif);
  font-size: 12px;
}
.intro-heading h2, .services-head h2, .contact h2 {
  max-width: 850px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.08;
}
.intro-copy { padding-top: 48px; color: var(--muted-light); }
.intro-copy p { margin: 0 0 22px; }
.intro-copy blockquote {
  margin: 42px 0 0;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
}

.criminal {
  display: grid;
  grid-template-columns: .9fr 1fr 1.05fr;
  gap: clamp(40px, 6vw, 100px);
  padding: 150px clamp(24px, 8.5vw, 140px);
  background:
    linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px),
    var(--ink);
  background-size: 80px 80px;
}
.criminal h2 { font-size: clamp(66px, 7vw, 110px); }
.criminal-content { padding-top: 70px; }
.criminal-content h3 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}
.criminal-content p { color: var(--muted-dark); }
.button-outline { margin-top: 28px; border-color: rgba(225,189,108,.55); color: var(--gold-bright); }
.button-outline:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.criminal-list { padding-top: 50px; }
.criminal-list ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.criminal-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line-dark);
  color: #d6d5ce;
}
.criminal-list li span { color: var(--gold); font-size: 9px; letter-spacing: .1em; }
.court-note { margin: 22px 0 0; color: #7c7d77; font-size: 12px; }

.services { position: relative; padding: 140px clamp(24px, 8.5vw, 140px); }
.services-head {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  padding-bottom: 90px;
}
.services-head .eyebrow { margin-top: 14px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.service-card { min-height: 410px; display: flex; flex-direction: column; padding: 42px clamp(24px, 3vw, 52px); border-left: 1px solid var(--line-light); }
.service-card:first-child { border-left: 0; }
.service-card > span { color: #92743c; font-family: var(--serif); font-size: 12px; }
.service-card h3 { min-height: 95px; margin: 42px 0 22px; font-family: var(--serif); font-size: clamp(27px, 2.2vw, 36px); font-weight: 500; line-height: 1.15; }
.service-card p { margin: 0; color: var(--muted-light); font-size: 14px; }
.service-card a { width: max-content; margin-top: auto; border-bottom: 1px solid #9c7c3f; color: #60491f; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.service-card a b { margin-left: 50px; font-size: 15px; font-weight: 400; }

.approach {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(70px, 11vw, 180px);
  padding: 150px clamp(24px, 8.5vw, 140px);
}
.approach-intro { position: sticky; top: 60px; align-self: start; }
.approach-intro h2 { font-size: clamp(46px, 5.2vw, 78px); line-height: 1.05; }
.approach-intro > p:last-child { max-width: 490px; margin-top: 34px; color: var(--muted-dark); }
.principles { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.principles li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 38px 0; border-bottom: 1px solid var(--line-dark); }
.principles li > span { color: var(--gold); font-family: var(--serif); font-size: 12px; }
.principles h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 30px; font-weight: 500; }
.principles p { max-width: 570px; margin: 0; color: var(--muted-dark); font-size: 14px; }

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(70px, 10vw, 160px);
  padding: 140px clamp(24px, 8.5vw, 140px);
}
.contact-copy > p:not(.eyebrow) { max-width: 590px; margin: 32px 0; color: var(--muted-light); }
.contact-details { display: grid; gap: 0; margin-top: 56px; border-top: 1px solid var(--line-light); }
.contact-details > * { display: flex; flex-direction: column; padding: 17px 0; border-bottom: 1px solid var(--line-light); }
.contact-details small { color: #7b776d; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.contact-details strong { margin-top: 4px; font-family: var(--serif); font-size: 19px; font-weight: 500; }
.contact-form { padding: 54px; background: #e7e1d5; }
.field { display: flex; flex-direction: column; margin-bottom: 24px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field label { margin-bottom: 6px; color: #716c61; font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid #aaa397;
  outline: none;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.button-dark { width: 100%; margin-top: 10px; background: var(--ink); color: var(--paper); }
.button-dark span { margin-left: auto; }
.button-dark:hover { background: #2b2c27; }
.form-note { margin: 14px 0 0; color: #777168; font-size: 10px; line-height: 1.5; }

footer { padding: 80px clamp(24px, 5vw, 80px) 34px; background: #050605; }
.footer-brand { display: flex; justify-content: center; }
.footer-brand img { width: min(600px, 80vw); height: auto; mix-blend-mode: screen; }
.footer-links { display: flex; justify-content: center; gap: 40px; padding: 35px 0 60px; }
.footer-links a { color: #a5a59e; font-size: 11px; letter-spacing: .08em; }
.footer-bottom { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 20px; padding-top: 28px; border-top: 1px solid var(--line-dark); color: #666761; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom p:nth-child(2) { text-align: center; }
.footer-bottom a { justify-self: end; color: #989990; }
.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .2s; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr 1fr; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 100px 12vw;
    background: rgba(8,9,8,.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
  }
  .site-nav.open { z-index: 9; opacity: 1; visibility: visible; }
  .site-nav a { font-family: var(--serif); font-size: 34px; font-weight: 500; }
  .header-call { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 11;
    justify-self: end;
    display: block;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { position: absolute; left: 8px; right: 8px; height: 1px; background: var(--paper); transition: transform .25s, top .25s; }
  .menu-toggle span:first-child { top: 16px; }
  .menu-toggle span:nth-child(2) { top: 25px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(-45deg); }
  .criminal { grid-template-columns: 1fr 1fr; }
  .criminal-list { grid-column: 2; }
  .criminal-content { padding-top: 20px; }
  .criminal-list { padding-top: 0; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 74px; }
  body { padding-bottom: 58px; }
  .site-header {
    min-height: 74px;
    padding: 0 20px;
    background: linear-gradient(to bottom, rgba(9,10,9,.92), rgba(9,10,9,.35));
  }
  .brand-name { font-size: 17px; letter-spacing: .18em; }
  .brand-sub { margin-top: 6px; font-size: 7px; letter-spacing: .42em; }
  .menu-toggle { width: 44px; height: 44px; margin-right: -8px; }
  .site-nav { gap: 18px; padding: 90px 24px 80px; }
  .site-nav a { font-size: clamp(29px, 9vw, 38px); }
  .hero {
    min-height: min(760px, calc(100svh - 20px));
    align-items: center;
    padding: 118px 20px 88px;
  }
  .hero::after {
    width: 340px;
    right: -210px;
    top: 68%;
    box-shadow: 0 0 0 45px rgba(197,154,69,.018), 0 0 0 90px rgba(197,154,69,.012);
  }
  .hero-lines::before { left: 50%; }
  .hero-lines::after { display: none; }
  .eyebrow { gap: 10px; margin-bottom: 22px; font-size: 8px; letter-spacing: .16em; }
  .eyebrow span { width: 24px; flex: 0 0 auto; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(43px, 13vw, 62px);
    line-height: 1.02;
    overflow-wrap: normal;
  }
  .hero-title-desktop { display: none; }
  .hero-title-mobile { display: block; }
  .hero h1 br { display: block; }
  .hero h1 em { white-space: nowrap; }
  .hero-copy { max-width: 92%; margin: 26px 0 0; font-size: 15px; line-height: 1.55; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; margin-left: 0; }
  .hero-actions .button { width: 100%; padding: 0 18px; text-align: center; }
  .text-link { font-size: 9px; }
  .hero-marker { right: -72px; top: 72%; opacity: .72; }
  .hero-marker strong { font-size: 270px; }
  .hero-marker span { display: none; }
  .hero-aside { display: none; }
  .intro, .criminal, .services-head, .approach, .contact { grid-template-columns: 1fr; }
  .intro, .criminal, .services, .approach, .contact { padding: 82px 20px; }
  .section-number { top: 28px; right: 20px; }
  .intro { gap: 28px; }
  .intro-heading h2, .services-head h2, .contact h2 {
    font-size: clamp(36px, 11vw, 50px);
    line-height: 1.06;
  }
  .intro-copy { padding-top: 10px; }
  .intro-copy p { margin-bottom: 18px; font-size: 15px; }
  .intro-copy blockquote { margin-top: 32px; padding-left: 18px; font-size: 20px; }
  .criminal { gap: 42px; background-size: 54px 54px; }
  .criminal h2 { font-size: clamp(58px, 18vw, 78px); }
  .criminal-content, .criminal-list { grid-column: auto; padding-top: 0; }
  .criminal-content h3 { margin-bottom: 20px; font-size: 27px; }
  .criminal-content p { font-size: 15px; }
  .button-outline { width: 100%; }
  .criminal-list li { gap: 14px; padding: 14px 2px; font-size: 14px; }
  .services-head { gap: 12px; padding-bottom: 55px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 32px 4px 36px; border-left: 0; border-top: 1px solid var(--line-light); }
  .service-card:first-child { border-top: 0; }
  .service-card h3 { min-height: 0; margin: 26px 0 16px; font-size: 30px; }
  .service-card a { margin-top: 28px; }
  .approach { gap: 52px; }
  .approach-intro { position: static; }
  .approach-intro h2 { font-size: clamp(39px, 12vw, 54px); }
  .principles li { grid-template-columns: 42px 1fr; gap: 10px; padding: 27px 0; }
  .principles h3 { font-size: 26px; }
  .contact { gap: 50px; }
  .contact-copy > p:not(.eyebrow) { margin: 24px 0; font-size: 15px; }
  .contact-details { margin-top: 38px; }
  .contact-details strong { font-size: 17px; overflow-wrap: anywhere; }
  .contact-form { width: 100%; padding: 32px 20px; margin: 0; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field input, .field select, .field textarea { min-height: 44px; font-size: 16px; }
  .button-dark { min-height: 58px; padding: 10px 16px; }
  footer { padding: 48px 20px 28px; }
  .footer-brand img { width: 100%; max-width: 430px; }
  .footer-links { flex-wrap: wrap; gap: 18px 28px; padding-bottom: 45px; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom p:nth-child(2) { text-align: center; }
  .footer-bottom a { justify-self: center; }
  .mobile-call {
    position: fixed;
    z-index: 15;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 20px;
    background: var(--gold);
    color: var(--ink);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .mobile-call strong { font-size: 13px; }
}

@media (max-width: 390px) {
  .hero { min-height: 700px; padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: clamp(39px, 12.4vw, 49px); }
  .hero-copy { max-width: 100%; }
  .button { min-height: 52px; font-size: 9px; }
  .intro, .criminal, .services, .approach, .contact { padding-left: 18px; padding-right: 18px; }
  .footer-links { gap: 14px 20px; }
  .mobile-call { padding: 0 16px; }
  .mobile-call strong { font-size: 12px; }
}

@media (max-height: 700px) and (max-width: 760px) {
  .hero { min-height: 650px; padding-top: 105px; padding-bottom: 72px; }
  .hero h1 { font-size: clamp(40px, 12.5vw, 56px); }
  .hero-copy { margin-top: 20px; }
  .hero-actions { margin-top: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
