:root {
  color-scheme: light;
  --ink: #192126;
  --muted: #52616b;
  --line: #d7dee2;
  --paper: #ffffff;
  --soft: #f4f7f4;
  --deep: #123331;
  --deep-2: #0b2425;
  --accent: #a35533;
  --accent-2: #d8a85f;
  --focus: #005fcc;
  --shadow: 0 22px 60px rgba(20, 31, 35, 0.16);
  --radius: 8px;
  --max: 1160px;
  --font-body: Aptos, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: Cambria, Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.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;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  color: #fff;
  background: var(--focus);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(25, 33, 38, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  min-height: 74px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  background: var(--deep);
  border-radius: 50%;
}

.brand strong {
  display: block;
  font-size: 1.03rem;
  line-height: 1.2;
}

.brand span span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 13px;
  color: #263238;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
}

.site-nav a:hover {
  background: #e9f0ed;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  top: 7px;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(680px, calc(100svh - 72px));
  overflow: hidden;
  color: #fff;
  background: var(--deep-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 30, 31, 0.93) 0%, rgba(9, 30, 31, 0.75) 44%, rgba(9, 30, 31, 0.28) 100%),
    url("assets/office-hero.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(680px, calc(100% - 48px));
  max-width: var(--max);
  min-height: inherit;
  margin: 0 auto;
  padding: 66px 0 76px;
  transform: translateX(calc((min(100vw, var(--max)) - min(680px, calc(100vw - 48px))) / -2));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2c987;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5.6vw, 4.35rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: #ecf3f0;
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  font-weight: 800;
  text-decoration: none;
  background: transparent;
  border: 2px solid transparent;
  border-radius: var(--radius);
}

button.button {
  appearance: none;
  font: inherit;
  cursor: pointer;
}

.button.primary {
  color: #102526;
  background: #f2c987;
}

.button.primary:hover {
  background: #ffd996;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.13);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  background: var(--paper);
  border: 1px solid rgba(25, 33, 38, 0.12);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 126px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.stat {
  display: block;
  margin-bottom: 6px;
  color: var(--deep);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.15;
}

.trust-strip span:last-child {
  display: block;
  color: var(--muted);
  font-size: 0.98rem;
}

.section {
  padding: 88px 24px;
}

.section-grid,
.section-header,
.practice-layout,
.process-list,
.attorney-grid,
.contact-panel,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}

.body-copy {
  color: var(--muted);
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.practice-section,
.attorneys-section {
  background: var(--soft);
}

.section-header {
  max-width: 780px;
  margin-bottom: 42px;
}

.practice-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: stretch;
}

.practice-image {
  min-height: 100%;
  overflow: hidden;
  background: #dfe7e5;
}

.practice-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.practice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.practice-card {
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(25, 33, 38, 0.12);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
}

.practice-card:nth-child(5) {
  grid-column: 1 / -1;
}

.practice-card p,
.process-list p,
.attorney-card dd {
  color: var(--muted);
}

.practice-card p,
.process-list p {
  margin-bottom: 0;
}

.process-section {
  background: #fff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 800;
}

.attorney-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.attorney-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(25, 33, 38, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(18, 51, 49, 0.08);
}

.attorney-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  object-position: center 28%;
  background: #dde4e1;
}

.attorney-card:nth-child(2) img {
  object-position: center 22%;
}

.attorney-content {
  padding: 28px;
}

.attorney-content dl {
  display: grid;
  gap: 18px;
  margin: 0 0 22px;
}

.attorney-content dt {
  margin-bottom: 5px;
  color: var(--deep);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.attorney-content dd {
  margin: 0;
}

.text-link {
  color: #8f3f22;
  padding: 0;
  font: inherit;
  font-weight: 800;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus-visible {
  color: #642b18;
}

.inline-email {
  text-decoration-line: underline;
}

.contact-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 36, 37, 0.96), rgba(11, 36, 37, 0.82)),
    url("assets/contact-banner.jpg") center / cover no-repeat;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 34px;
}

.contact-section .eyebrow {
  color: #f2c987;
}

.contact-section .body-copy {
  color: #ecf3f0;
}

.contact-details {
  display: grid;
  gap: 8px;
  padding: 28px;
  color: var(--ink);
  font-style: normal;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-details strong {
  color: var(--deep);
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.contact-details a,
.contact-details button {
  color: #8f3f22;
  font-weight: 800;
}

.contact-form-card {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-intro {
  max-width: 760px;
  margin-bottom: 26px;
}

.form-intro h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.form-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--deep);
  font-weight: 800;
}

.form-field label span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border: 1px solid #a9b6bc;
  border-radius: var(--radius);
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-color: var(--focus);
}

.checkbox-field {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.checkbox-field input {
  width: 20px;
  min-height: 20px;
  margin-top: 6px;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.recaptcha-panel {
  min-height: 86px;
  padding: 16px;
  background: #f4f7f4;
  border: 1px dashed #9aabb0;
  border-radius: var(--radius);
}

.form-help,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status {
  min-height: 1.6em;
  font-weight: 800;
}

.form-status.is-error {
  color: #8f2d19;
}

.form-status.is-ready {
  color: #1c5d3f;
}

.form-submit {
  justify-self: start;
}

.accessibility-section {
  background: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px 48px;
  padding: 38px 24px;
  color: #dce7e4;
  background: #0b2425;
}

.site-footer p {
  max-width: 760px;
  margin-bottom: 0;
  color: #c4d1ce;
  font-size: 0.95rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-footer a {
  min-height: 44px;
  color: #fff;
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 24px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 34px rgba(20, 31, 35, 0.16);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 52px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-content {
    width: min(760px, calc(100% - 48px));
    transform: none;
  }

  .trust-strip,
  .section-grid,
  .practice-layout,
  .process-list,
  .attorney-grid,
  .contact-panel,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin: 0;
    max-width: none;
    box-shadow: none;
    border-left: 0;
    border-right: 0;
  }

  .trust-strip div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .practice-card:nth-child(5) {
    grid-column: auto;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    min-height: 68px;
    padding: 0 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand span span {
    font-size: 0.75rem;
  }

  .site-nav {
    inset: 68px 0 auto 0;
  }

  .hero {
    min-height: 610px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(9, 30, 31, 0.97) 0%, rgba(9, 30, 31, 0.88) 56%, rgba(9, 30, 31, 0.58) 100%),
      url("assets/office-hero.jpg") center / cover no-repeat;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 48px 0;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding: 62px 18px;
  }

  .section-grid {
    gap: 20px;
  }

  .practice-image img {
    min-height: 280px;
  }

  .practice-card,
  .process-list li,
  .attorney-content,
  .contact-details,
  .contact-form-card {
    padding: 22px;
  }

  .attorney-card img {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    padding: 34px 18px;
  }
}
