:root {
  --ink: #18242c;
  --ink-2: #1d303d;
  --night: #101d25;
  --paper: #f4f1e8;
  --muted: #5d6871;
  --soft: #eef1f2;
  --line: #d9dedf;
  --gold: #c39b56;
  --gold-dark: #a87a3d;
  --blue-gray: #c9d1d8;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  --serif: "Inria Serif", Georgia, serif;
  --sans: "Open Sans", Arial, sans-serif;
  --modern: "Inter", Arial, sans-serif;
  --max: 1300px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(29, 40, 46, 0.12);
  background: rgba(244, 241, 232, 0.96);
  backdrop-filter: blur(18px);
}

.eyebrow-bar {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.eyebrow-bar__inner,
.social-row,
.phone-link,
.nav,
.nav-menu,
.brand,
.benefits,
.hero__actions {
  display: flex;
  align-items: center;
}

.eyebrow-bar__inner {
  justify-content: space-between;
  min-height: 42px;
}

.social-row,
.phone-link {
  gap: 20px;
}

.social-row span,
.phone-link span {
  color: var(--gold);
  font-weight: 800;
}

.phone-link {
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.nav {
  min-height: 100px;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
}

.brand__mark {
  display: inline-flex;
  width: 152px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.brand__mark em {
  margin-left: 4px;
  color: var(--paper);
  font-style: normal;
}

.brand__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--paper);
  font-size: 19px;
}

.brand__icon svg {
  width: 68%;
  height: 68%;
}

.brand__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__icon .brand__icon-accent {
  stroke: var(--gold);
}

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

.brand strong {
  color: var(--paper);
  font-family: "Newsreader", Georgia, serif;
  font-size: 21px;
  line-height: 1.1;
}

.brand small {
  margin-top: 5px;
  padding-left: 30px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.brand small::before {
  display: inline-block;
  width: 22px;
  height: 1px;
  margin: 0 8px 3px -30px;
  content: "";
  background: var(--gold);
}

.nav-menu {
  gap: 34px;
  font-size: 15px;
  font-weight: 700;
}

.nav-menu > a:not(.btn) {
  color: #101d25;
}

.nav-menu > a.nav-active {
  color: var(--gold-dark);
}

.nav-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
}

.btn--gold:hover {
  background: #d1a866;
}

.btn--outline {
  border: 1px solid #566067;
  color: var(--white);
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--ink);
  color: var(--paper);
}

.hero__grid,
.about__grid,
.contact__grid,
.roblox__grid {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 1.07fr 0.93fr;
}

.hero__copy,
.roblox__copy {
  max-width: 740px;
}

.section-kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-kicker span {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

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

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

h1 {
  max-width: 615px;
  margin-bottom: 40px;
  font-size: clamp(42px, 3.4vw, 48px);
}

h2 {
  margin-bottom: 24px;
  color: inherit;
  font-size: clamp(34px, 3vw, 48px);
}

h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
}

.hero__copy > p:not(.section-kicker),
.roblox__copy > p:not(.section-kicker):not(.eyebrow):not(.fineprint) {
  max-width: 670px;
  color: var(--paper);
  font-size: 16px;
  letter-spacing: 0.11em;
  line-height: 1.7;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0 32px;
}

.benefits {
  flex-wrap: wrap;
  gap: 20px 28px;
  margin: 0;
  padding: 0;
  color: var(--paper);
  list-style: none;
  font-size: 14px;
  letter-spacing: 0.11em;
}

.benefits li::before {
  content: "✦";
  color: var(--gold);
  margin-right: 14px;
}

.hero__portrait,
.roblox__image {
  position: relative;
  border-radius: 2px;
}

.hero__portrait {
  width: min(100%, 432px);
  justify-self: end;
}

.hero__portrait img,
.roblox__image img {
  width: 100%;
  border-radius: 2px;
  box-shadow: none;
}

.hero__portrait::before,
.hero__portrait::after,
.roblox__image::before,
.roblox__image::after {
  position: absolute;
  z-index: 2;
  width: 96px;
  height: 96px;
  content: "";
  pointer-events: none;
}

.hero__portrait::before,
.roblox__image::before {
  top: -12px;
  left: -12px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.hero__portrait::after,
.roblox__image::after {
  right: -12px;
  bottom: -12px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.awards {
  padding: 39px 0 33px;
  background: var(--paper);
}

.awards__inner {
  display: grid;
  justify-items: center;
  gap: 28px;
}

.awards__grid {
  display: grid;
  width: min(100%, 900px);
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
  gap: 62px;
  justify-items: center;
}

.award-badge {
  display: grid;
  width: 123px;
  height: 123px;
  align-content: center;
  gap: 5px;
  place-items: center;
  border: 1.5px solid var(--gold-dark);
  border-radius: 50%;
  color: var(--ink);
  text-align: center;
}

.award-badge span,
.award-badge small {
  color: #6f7a82;
  font-family: var(--modern);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.15;
  text-transform: uppercase;
}

.award-badge strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.award-badge:nth-child(2) strong {
  font-family: var(--modern);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.award-badge small {
  color: var(--gold-dark);
}

.awards__inner > p {
  margin: 0;
  color: #9da6ad;
  font-family: var(--modern);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}

.section-heading {
  grid-column: 1 / -1;
}

.section-heading--center {
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.about {
  background: var(--paper);
}

.about__grid {
  align-items: start;
  grid-template-columns: 1fr;
  gap: 0;
}

.about__copy {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(2, 1fr);
}

.about__copy p {
  color: #3c4750;
  font-family: var(--modern);
  font-size: 17px;
  letter-spacing: -0.026em;
  line-height: 1.78;
}

.facts {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.facts strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
}

.facts span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--modern);
  font-size: 14px;
}

.membership {
  margin-top: 28px;
  font-family: var(--modern);
  color: var(--muted);
  font-size: 13.5px;
}

.practice {
  background: #eef1f2;
}

.practice__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.practice-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(20, 34, 44, 0.12);
  background: var(--paper);
}

.practice-card span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.practice-card p {
  color: var(--muted);
  font-size: 15px;
}

.roblox {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(
      circle at 12% 0,
      rgba(196, 154, 87, 0.16),
      rgba(196, 154, 87, 0) 20%
    ),
    #14222c;
  color: var(--paper);
}

.roblox__grid {
  grid-template-columns: 0.98fr 0.82fr;
}

.roblox-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--blue-gray);
  list-style: none;
}

.roblox-list li::before {
  content: "›";
  margin-right: 14px;
  color: var(--gold);
  font-size: 20px;
}

.fineprint,
.disclaimer {
  color: #8794a0;
  font-size: 13px;
}

.why {
  background: #145882;
  color: var(--paper);
}

.why .eyebrow,
.why-card strong {
  color: #ffbf3b;
}

.why__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.why-card {
  min-height: 150px;
  padding: 28px 18px;
  border-radius: 4px;
  background: rgba(20, 34, 44, 0.58);
  text-align: center;
}

.why-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 46px;
  line-height: 1;
}

.why-card span {
  color: #e0e8ed;
  font-size: 14px;
  font-weight: 700;
}

.disclaimer {
  margin: 36px 0 0;
  color: #d6e2ea;
  text-align: center;
}

.testimonials {
  border-top: 1px solid var(--paper);
  background: var(--white);
}

.testimonials__wrap {
  max-width: 980px;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
}

.testimonial-card {
  display: grid;
  align-items: center;
  margin-top: 34px;
  grid-template-columns: 48px 1fr 48px;
  gap: 20px;
}

.testimonial-content {
  min-height: 270px;
  padding: 0 70px;
}

.stars {
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 0.29em;
}

blockquote {
  max-width: 660px;
  min-height: 150px;
  margin: 18px auto 20px;
  color: var(--ink);
  font-family: var(--sans);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.11em;
  line-height: 1.7;
}

.testimonial-content strong,
.testimonial-content span {
  display: block;
}

.testimonial-content strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
}

.testimonial-content span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.11em;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  background: #f4f0e8;
  color: var(--ink);
  cursor: pointer;
  font-size: 30px;
  display: grid;
  place-content: center;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.dots button[aria-current="true"] {
  background: var(--gold);
}

.contact {
  background: #0f1b24;
  color: var(--paper);
}

.contact__grid {
  align-items: start;
  gap: 72px;
}

.contact__copy p:not(.eyebrow) {
  max-width: 430px;
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.75;
}

.contact__copy .eyebrow {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.28em;
}

.contact__copy h2 {
  margin-bottom: 22px;
  color: var(--paper);
  font-size: 42px;
  line-height: 1.04;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.contact-item {
  display: grid;
  align-items: start;
  gap: 10px;
  grid-template-columns: 16px minmax(0, 1fr);
}

.contact-icon {
  display: grid;
  width: 13px;
  height: 13px;
  place-items: center;
  margin-top: 3px;
  color: var(--paper);
}

.contact-icon svg {
  width: 13px;
  height: 13px;
}

.contact-icon path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list p {
  margin: 0;
  color: var(--paper);
  font-size: 13px;
  line-height: 1.45;
}

.contact-list span {
  display: block;
  color: #8c979f;
  font-family: var(--modern);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--paper);
  font-weight: 700;
}

.case-form {
  padding: 44px 40px 34px;
  background: var(--white);
  border-radius: 2px;
  color: var(--ink);
  box-shadow: none;
}

.success-message {
  display: block;
  margin-bottom: 30px;
  text-align: center;
}

.case-form.is-submitted .success-message {
  display: block;
}

.success-message h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  text-align: center;
}

.success-message p {
  max-width: 390px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.65;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

label {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  color: var(--ink);
  font-family: var(--modern);
  font-size: 10px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #e4dbcb;
  border-radius: 0;
  padding: 9px 10px;
  background: #fbfaf7;
  color: var(--ink);
  font-size: 13px;
}

input {
  min-height: 40px;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.case-form .btn {
  width: 100%;
  min-height: 48px;
  padding: 12px 20px;
  background: #101d25;
  font-size: 12px;
}

.case-form > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.footer {
  padding: 64px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #14222c;
  color: #c9d1d8;
}

.footer__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}

.brand--footer .brand__icon {
  background: var(--gold);
  color: var(--ink);
}

.brand--footer {
  gap: 12px;
  align-items: center;
}

.brand--footer strong {
  color: var(--paper);
}

.footer-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  color: var(--paper);
}

.footer-logo__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 3px solid var(--gold);
  color: var(--paper);
  flex: 0 0 auto;
}

.footer-logo__icon svg {
  width: 24px;
  height: 24px;
}

.footer-logo__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-logo__icon .footer-logo__gold-stroke {
  stroke: var(--gold);
}

.footer-logo__text {
  display: grid;
  gap: 14px;
}

.footer-logo__text strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
  white-space: nowrap;
}

.footer-logo__text small {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--modern);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-logo__text small span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  overflow: hidden;
  font-size: 0;
}

.footer h2 {
  margin-bottom: 18px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 12px;
  color: #9faab3;
  font-size: 14px;
}

.footer__bottom {
  display: grid;
  gap: 40px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: 1fr 1.5fr;
}

.footer__bottom p {
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: static;
}

.site-header .container {
  width: min(1560px, calc(100% - 112px));
}

.nav {
  min-height: 62px;
  gap: 18px;
}

.site-header .brand {
  align-items: center;
  gap: 10px;
}

.site-header .brand__icon {
  width: 32px;
  height: 32px;
  border-color: var(--gold-dark);
  background: var(--paper);
  color: var(--ink);
}

.site-header .brand strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1;
}

.site-header .brand small {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  padding-left: 0;
  color: var(--gold-dark);
  font-family: var(--modern);
  font-size: 7px;
  letter-spacing: 0.24em;
}

.site-header .brand small::before {
  width: 16px;
  height: 1px;
  margin: 0;
  background: var(--gold-dark);
}

.nav-menu {
  align-items: center;
  gap: 31px;
  font-size: 14px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #101d25;
  font-weight: 800;
}

.nav-phone::before {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--gold-dark);
}

.nav-menu .btn {
  min-height: 45px;
  padding: 10px 20px;
  font-size: 14px;
}

.nav-menu .nav-cta {
  background: #101d25;
  color: var(--white);
}

.hero {
  padding: 72px 0 70px;
}

.hero .container {
  width: min(1300px, calc(100% - 112px));
}

.hero__grid {
  gap: 108px;
  grid-template-columns: 740px 432px;
  justify-content: center;
}

.hero__portrait {
  width: 432px;
}

.hero__portrait img {
  width: 405px;
  height: 506px;
  margin: 15px 14px 15px 13px;
  object-fit: cover;
}

.hero__portrait::before,
.hero__portrait::after {
  width: 107px;
  height: 103px;
}

.hero__portrait::before {
  top: 0;
  right: 0;
  left: auto;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-bottom: 0;
  border-left: 0;
}

.hero__portrait::after {
  right: auto;
  bottom: 0;
  left: 0;
  border-right: 0;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.hero__copy > p:not(.section-kicker) {
  max-width: 640px;
}

.hero-strip {
  background: #223640;
  color: #b8c2c7;
}

.hero-strip__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  font-family: var(--modern);
  font-size: 13px;
}

.hero-strip__tags {
  display: flex;
  gap: 40px;
}

.hero-strip__tags span {
  color: #9faab3;
}
.hero-strip strong {
  color: var(--paper);
  font-size: 13px;
}

.hero-strip span:last-child {
  color: var(--gold);
}

.case-results {
  padding: 88px 0 84px;
  background: var(--white);
}

.case-results .container,
.practice .container {
  width: min(1300px, calc(100% - 112px));
}

.case-results .eyebrow,
.practice .eyebrow,
.about .eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
}

.case-results h2 {
  margin-bottom: 32px;
  font-size: 40px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #dedbd2;
  background: var(--white);
}

.results-grid article {
  min-height: 170px;
  padding: 28px 34px;
  border-right: 1px solid #dedbd2;
}

.results-grid article:last-child {
  border-right: 0;
}

.results-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

.results-grid h3 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
}

.results-grid p {
  margin: 0;
  color: #66717a;
  font-size: 13px;
  line-height: 1.55;
}

.awards {
  padding: 39px 0 33px;
  background: var(--paper);
}

.awards__grid {
  max-width: 1080px;
  gap: 40px;
}

.testimonials {
  padding: 80px 0;
}

.practice {
  background: var(--paper);
}

.practice-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.practice-heading h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 40px;
}

.practice-heading > a {
  font-size: 13px;
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

.practice-card > a {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.practice__grid {
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #dedbd2;
  border-left: 1px solid #dedbd2;
}

.practice-card {
  min-height: 237px;
  padding: 36px 34px;
  border: 0;
  border-right: 1px solid #dedbd2;
  border-bottom: 1px solid #dedbd2;
  background: var(--white);
}

.practice-card span {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 26px;
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.practice-card h3 {
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
}

.practice-card p {
  color: #59656d;
  font-size: 14px;
  line-height: 1.65;
}

.contact {
  padding: 80px 0;
}

.contact .container {
  width: min(1120px, calc(100% - 112px));
}

.contact__grid {
  grid-template-columns: 500px 500px;
  justify-content: space-between;
}

.case-form {
  min-height: 0;
}

.about .container {
  width: min(1300px, calc(100% - 112px));
}

.about h2 {
  font-size: 40px;
}

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

.roblox .container {
  width: min(1300px, calc(100% - 112px));
}

.roblox__image {
  width: 478px;
  justify-self: end;
}

.roblox__image img {
  width: 452px;
  height: 573px;
  margin: 15px 13px;
  object-fit: cover;
}

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

.why .eyebrow,
.why-card strong {
  color: var(--gold);
}

.why__grid {
  gap: 0;
}

.why-card {
  min-height: 100px;
  border-left: 1px solid #ebe7dd;
  background: transparent;
}

.why-card:first-child {
  border-left: 0;
}

.why-card strong {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}

.why-card span,
.disclaimer {
  color: #74808a;
}

.footer .container {
  width: min(1300px, calc(100% - 112px));
}

@media (max-width: 960px) {
  .site-header .container,
  .hero .container,
  .case-results .container,
  .practice .container,
  .contact .container,
  .about .container,
  .roblox .container,
  .footer .container {
    width: min(100% - 40px, var(--max));
  }

  .eyebrow-bar {
    display: none;
  }

  .nav {
    min-height: 78px;
  }

  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .nav-menu {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    padding: 22px 20px 30px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }

  body.nav-open .nav-menu {
    display: flex;
  }

  .hero__grid,
  .about__copy,
  .contact__grid,
  .roblox__grid {
    grid-template-columns: 1fr;
  }

  .hero__portrait {
    width: min(100%, 432px);
    max-width: 520px;
    margin-inline: auto;
    justify-self: center;
  }

  .hero__portrait img,
  .roblox__image img {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .hero-strip__inner {
    grid-template-columns: 1fr 1fr;
    padding: 18px 0;
  }

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

  .results-grid article:nth-child(2) {
    border-right: 0;
  }

  .results-grid article {
    border-bottom: 1px solid #dedbd2;
  }

  .practice-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .roblox__image {
    width: min(100%, 400px);
    justify-self: center;
  }

  .awards__grid,
  .practice__grid,
  .why__grid,
  .footer__grid,
  .footer__bottom {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo {
    gap: 22px;
  }

  .footer-logo__icon {
    width: 86px;
    height: 86px;
  }

  .footer-logo__icon svg {
    width: 48px;
    height: 48px;
  }

  .footer-logo__text strong {
    font-size: 46px;
  }

  .footer-logo__text small {
    font-size: 22px;
  }

  .facts {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .site-header .container,
  .hero .container,
  .case-results .container,
  .practice .container,
  .contact .container,
  .about .container,
  .roblox .container,
  .footer .container {
    width: min(100% - 32px, var(--max));
  }

  .section,
  .roblox {
    padding: 72px 0;
  }

  .hero {
    padding: 58px 0;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .hero__actions,
  .benefits {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .awards {
    padding: 42px 0;
  }

  .awards__grid {
    max-width: 620px;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 36px;
  }

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

  .results-grid article,
  .results-grid article:nth-child(2) {
    border-right: 0;
  }

  .award-badge {
    width: 123px;
    height: 123px;
  }

  .award-badge:nth-child(5) {
    grid-column: 1 / -1;
  }

  .practice__grid,
  .why__grid,
  .footer__grid,
  .footer__bottom,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-logo__text strong {
    font-size: 38px;
  }

  .footer-logo__text small {
    gap: 14px;
    font-size: 18px;
  }

  .footer-logo__text small span {
    width: 46px;
  }

  .roblox__image {
    order: -1;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .testimonial-content {
    padding: 12px 0;
  }

  .slider-btn {
    display: none;
  }

  blockquote {
    font-size: 24px;
  }

  .case-form {
    padding: 24px;
  }
}
