:root {
  --ink: #102f2a;
  --ink-deep: #09231f;
  --green: #235148;
  --paper: #f8f4ed;
  --cream: #efe6d8;
  --white: #fffdf9;
  --gold: #c8924f;
  --gold-light: #e2b873;
  --text: #1b302c;
  --muted: #68746f;
  --line: rgba(16, 47, 42, 0.14);
  --serif: "Prata", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

svg {
  display: block;
}

.shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
}

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

.page-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(226, 184, 115, 0.52);
  border-radius: 50%;
}

.brand-mark svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  white-space: nowrap;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-inner nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 700;
}

.header-inner nav a:hover,
.header-inner nav a:focus-visible {
  color: var(--gold-light);
}

.header-phone {
  display: grid;
  gap: 3px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.header-phone span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 7px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 126px 0 84px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 42%, rgba(200, 146, 79, 0.17), transparent 31%),
    linear-gradient(135deg, var(--ink-deep), #173f37 62%, #0d2924);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(226, 184, 115, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 680px;
  height: 680px;
  top: -220px;
  right: -180px;
}

.hero-orbit-two {
  width: 420px;
  height: 420px;
  right: 80px;
  bottom: -260px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 66px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.7fr);
  align-items: center;
  gap: 90px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: #91652e;
}

.eyebrow.light {
  color: var(--gold-light);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 750px;
  font-size: clamp(43px, 5.3vw, 72px);
  line-height: 1.15;
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-lead {
  max-width: 680px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: #182e29;
  background: var(--gold-light);
}

.button-gold:hover {
  background: #ebc889;
}

.button-ghost {
  color: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.2);
}

.button-ghost:hover {
  border-color: var(--gold-light);
}

.hero-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.hero-card-label {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card ul {
  padding: 0;
  margin: 24px 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--serif);
  font-size: 16px;
}

.hero-card li span {
  color: rgba(226, 184, 115, 0.6);
  font-family: var(--sans);
  font-size: 8px;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  line-height: 1.8;
}

.section {
  padding: 110px 0;
}

h2 {
  font-size: clamp(33px, 4.2vw, 52px);
  line-height: 1.25;
}

h2 em {
  color: #a87334;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(350px, 0.8fr);
  gap: 110px;
}

.intro-copy {
  padding-top: 25px;
}

.intro-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

.services {
  background: #eee7dc;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 370px;
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

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

.service-item {
  display: grid;
  grid-template-columns: 55px minmax(260px, 0.8fr) minmax(330px, 1fr);
  gap: 46px;
  padding: 45px 0;
  border-bottom: 1px solid var(--line);
}

.service-index {
  color: #a27640;
  font-family: var(--serif);
  font-size: 13px;
}

.service-copy h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.service-copy p,
.service-detail li {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.service-copy p {
  margin: 0;
}

.service-detail {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.service-detail h4 {
  margin: 0 0 16px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 18px;
}

.service-detail li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--gold);
  content: "";
}

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

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 120px;
}

.process h2 em {
  color: var(--gold-light);
}

.process-copy > p:last-child {
  max-width: 440px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.9;
}

.process-steps {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.process-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-steps li > span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 11px;
}

.process-steps strong {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.process-steps p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.7;
}

.lawyer-card {
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  align-items: center;
  gap: 55px;
  padding: 54px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(16, 47, 42, 0.08);
}

.lawyer-monogram {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 8px 8px;
  color: var(--gold-light);
  background:
    radial-gradient(circle at 50% 28%, rgba(226, 184, 115, 0.2), transparent 34%),
    var(--ink);
}

.lawyer-monogram span {
  font-family: var(--serif);
  font-size: 76px;
}

.lawyer-copy h2 {
  font-size: 37px;
}

.lawyer-copy > p:last-of-type {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.practice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 23px;
}

.practice-tags span {
  padding: 7px 10px;
  color: #765126;
  border: 1px solid rgba(168, 115, 52, 0.23);
  background: rgba(226, 184, 115, 0.09);
  font-size: 8px;
  font-weight: 700;
}

.lawyer-contact {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.lawyer-contact small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lawyer-contact a {
  display: inline-block;
  margin-top: 10px;
  color: #9a672d;
  font-family: var(--serif);
  font-size: 27px;
}

.lawyer-contact p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.8;
}

.closing {
  padding-top: 0;
}

.closing-card {
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: center;
  gap: 90px;
  padding: 60px;
  color: var(--white);
  background: linear-gradient(135deg, #0d2a25, #204b43);
}

.closing-card h2 em {
  color: var(--gold-light);
}

.closing-card > div:last-child p {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.9;
}

.page-footer {
  padding: 52px 0 26px;
  color: var(--white);
  background: var(--ink-deep);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  display: flex;
  gap: 26px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 35px;
  padding-top: 23px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 8px;
  line-height: 1.7;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .header-inner nav {
    display: none;
  }

  .hero-grid,
  .intro-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-card {
    max-width: 600px;
  }

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

  .service-item {
    grid-template-columns: 44px 1fr;
  }

  .service-detail {
    grid-column: 2;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .lawyer-card {
    grid-template-columns: 180px 1fr;
  }

  .lawyer-contact {
    grid-column: 2;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .closing-card {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 30px, 1160px);
  }

  .header-inner {
    min-height: 74px;
  }

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

  .brand strong {
    font-size: 14px;
  }

  .header-phone {
    padding-left: 12px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 108px 0 72px;
  }

  .breadcrumbs {
    margin-bottom: 46px;
  }

  h1 {
    font-size: 39px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .section {
    padding: 76px 0;
  }

  .intro-grid,
  .hero-grid,
  .process-grid {
    gap: 38px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 35px 0;
  }

  .service-detail {
    grid-column: auto;
  }

  .lawyer-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px;
  }

  .lawyer-monogram {
    width: 170px;
  }

  .lawyer-contact {
    grid-column: auto;
  }

  .closing-card {
    width: 100%;
    padding: 48px 28px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 410px) {
  .brand small,
  .header-phone span {
    display: none;
  }

  .brand strong {
    font-size: 12px;
  }

  .header-phone {
    border-left: 0;
  }
}

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

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