:root {
  --navy: #111b2f;
  --navy-2: #182641;
  --gold: #c99545;
  --gold-light: #ead2a8;
  --cream: #f7f4ee;
  --paper: #ffffff;
  --ink: #172033;
  --muted: #667085;
  --line: #e3e5e8;
  --success: #274f44;
  --shadow: 0 18px 45px rgba(17, 27, 47, 0.12);
  --radius: 18px;
  --serif: "Marcellus", Georgia, serif;
  --sans: "Plus Jakarta Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1.2rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.16;
}

h1 {
  font-size: clamp(2.65rem, 7vw, 5.75rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
}

ul,
ol {
  padding-left: 1.2rem;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-160%);
}

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

.topbar {
  color: rgba(255, 255, 255, 0.82);
  background: #0b1324;
  font-size: 0.8rem;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: #fff;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  width: clamp(205px, 23vw, 285px);
  max-width: 285px;
}

.brand__logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand__logo--header {
  max-height: 66px;
  object-position: left center;
}

.brand__logo--footer {
  max-height: 74px;
  object-position: left center;
}

.nav-toggle {
  width: 46px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 1.25rem;
}

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

.site-nav > a,
.nav-dropdown > button {
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border: 0;
  font: 600 0.84rem var(--sans);
  cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-dropdown > button:hover {
  color: var(--gold-light);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 460px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 12px;
  visibility: hidden;
  opacity: 0;
  color: var(--ink);
  background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  padding: 9px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.nav-dropdown__menu a:hover {
  color: var(--navy);
  background: var(--cream);
}

.button,
button.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  color: var(--navy);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  font: 700 0.8rem var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.button:hover {
  color: #fff;
  background: #af7d35;
  border-color: #af7d35;
  transform: translateY(-2px);
}

.button--outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
}

.button--outline:hover {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

.button--nav {
  margin-left: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 670px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 18, 34, 0.96) 0%, rgba(10, 18, 34, 0.76) 54%, rgba(10, 18, 34, 0.3) 100%),
    url("../images/backgrounds/slider-1-1.jpg") center/cover no-repeat;
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(201, 149, 69, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(201, 149, 69, 0.05), 0 0 0 140px rgba(201, 149, 69, 0.04);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 100px 0 115px;
}

.hero .eyebrow,
.hero h1,
.hero__lead,
.hero__actions,
.hero__note {
  opacity: 0;
  transform: translateY(26px);
  animation: hero-rise 0.8s cubic-bezier(0.2, 0.65, 0.3, 1) forwards;
}

.hero h1 {
  animation-delay: 0.12s;
}

.hero__lead {
  animation-delay: 0.24s;
}

.hero__actions {
  animation-delay: 0.36s;
}

.hero__note {
  animation-delay: 0.48s;
}

.hero h1 {
  color: #fff;
}

.hero__lead {
  max-width: 680px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero__note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -55px;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

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

.trust-item__number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.trust-item h3 {
  margin: 0 0 5px;
  font-size: 1.15rem;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.credentials-section {
  padding: 88px 0 20px;
  background: #fff;
}

.credentials-section__heading {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.credentials-section__heading .eyebrow {
  justify-content: center;
}

.credentials-section__heading .eyebrow::after {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.credentials-section__heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

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

.credential-logo {
  min-height: 145px;
  display: grid;
  place-items: center;
  padding: 22px 18px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.credential-logo:hover {
  border-color: var(--gold-light);
  box-shadow: 0 14px 32px rgba(17, 27, 47, 0.1);
  transform: translateY(-5px);
}

.credential-logo img {
  width: 100%;
  height: 92px;
  object-fit: contain;
}

.section {
  padding: 105px 0;
}

.section--cream {
  background: var(--cream);
}

.section--navy {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.section--navy h2,
.section--navy h3 {
  color: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 45px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center .eyebrow::after {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-heading p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.practice-card {
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: 0.25s ease;
}

.practice-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s ease;
}

.practice-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.practice-card:hover::before {
  transform: scaleX(1);
}

.practice-card__index {
  margin-bottom: 24px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.practice-card h3 {
  font-size: 1.45rem;
}

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

.practice-card__link {
  margin-top: auto;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.practice-card__link::after {
  content: " →";
  color: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 75px;
}

.split__image {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split__image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  opacity: 0.75;
}

.split__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(11, 19, 36, 0.5));
}

.split__badge {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  max-width: 240px;
  padding: 22px;
  color: #fff;
  background: var(--navy);
  border-left: 4px solid var(--gold);
}

.split__badge strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step {
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.step__number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.step p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.faq-list summary {
  position: relative;
  padding-right: 38px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.14rem;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: -2px;
  right: 0;
  color: var(--gold);
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 27, 47, 0.98), rgba(17, 27, 47, 0.8)),
    url("../images/backgrounds/contact-1-bg.jpg") center/cover no-repeat;
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
}

.page-hero {
  position: relative;
  padding: 105px 0 90px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 21, 38, 0.97), rgba(12, 21, 38, 0.7)),
    url("../images/backgrounds/page-header-bg-1-1.jpg") center/cover no-repeat;
}

.page-hero .breadcrumbs,
.page-hero h1,
.page-hero p {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-rise 0.7s cubic-bezier(0.2, 0.65, 0.3, 1) forwards;
}

.page-hero h1 {
  animation-delay: 0.1s;
}

.page-hero p {
  animation-delay: 0.2s;
}

.page-hero::after {
  position: absolute;
  top: -180px;
  right: -110px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(201, 149, 69, 0.32);
  border-radius: 50%;
}

.page-hero h1 {
  max-width: 920px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs span::before {
  margin-right: 9px;
  content: "/";
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 65px;
}

.article-content {
  color: #3f4858;
}

.article-content > p:first-of-type {
  color: var(--ink);
  font-size: 1.1rem;
}

.article-content h2 {
  margin-top: 42px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.article-content h3 {
  margin-top: 30px;
}

.article-content li {
  margin-bottom: 10px;
}

.notice {
  margin: 32px 0;
  padding: 24px 26px;
  color: var(--navy);
  background: #f7f0e5;
  border-left: 4px solid var(--gold);
}

.sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 22px;
}

.sidebar-card {
  padding: 27px;
  background: var(--cream);
  border-radius: 12px;
}

.sidebar-card--navy {
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
}

.sidebar-card--navy h3 {
  color: #fff;
}

.sidebar-card h3 {
  font-size: 1.35rem;
}

.sidebar-links {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd8cf;
  font-size: 0.84rem;
}

.sidebar-links a::after {
  color: var(--gold);
  content: "→";
}

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

.profile-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 470px;
  overflow: hidden;
  background: var(--cream);
  border-radius: var(--radius);
}

.profile-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 45px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(17, 27, 47, 0.75), rgba(17, 27, 47, 0.9)),
    url("../images/resources/service-detail-1.jpg") center/cover no-repeat;
}

.profile-card__monogram {
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 3.2rem;
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.04);
}

.profile-card__body {
  align-self: center;
  padding: 55px;
}

.profile-card__title {
  margin-bottom: 4px;
}

.profile-card__role {
  display: block;
  margin-bottom: 25px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.article-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-card__image {
  height: 230px;
  overflow: hidden;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.article-card:hover img {
  transform: scale(1.04);
}

.article-card__body {
  padding: 27px;
}

.article-card__meta {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card h3 {
  font-size: 1.4rem;
}

.article-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.contact-details {
  padding: 38px;
  color: rgba(255, 255, 255, 0.77);
  background: var(--navy);
  border-radius: var(--radius);
}

.contact-details h2,
.contact-details h3 {
  color: #fff;
}

.contact-list {
  display: grid;
  gap: 22px;
  padding: 0;
  margin: 35px 0 0;
  list-style: none;
}

.contact-list strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 38px;
  background: var(--cream);
  border-radius: var(--radius);
}

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

.field--full {
  grid-column: 1 / -1;
}

.field--honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.field label {
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-status {
  display: none;
  padding: 13px 15px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.86rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #1d5d43;
  background: #eaf7f0;
  border-color: #a9d8bd;
}

.form-status.is-error {
  color: #8a2c2c;
  background: #fff0f0;
  border-color: #e9b4b4;
}

.contact-form .button[disabled] {
  opacity: 0.68;
  cursor: wait;
  transform: none;
}

.location-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.location-card h3 {
  margin-bottom: 5px;
}

.site-footer {
  padding-top: 75px;
  color: rgba(255, 255, 255, 0.68);
  background: #0b1324;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
  padding-bottom: 58px;
}

.site-footer h3 {
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-brand {
  margin-bottom: 22px;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.85rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.footer-bottom__links {
  display: flex;
  gap: 18px;
}

.call-float {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 17px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  font-size: 0.8rem;
  font-weight: 800;
}

.legal-note {
  padding: 18px 0;
  color: #6e7480;
  background: #eceff2;
  font-size: 0.72rem;
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.has-js .reveal {
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.65, 0.3, 1),
    transform 0.75s cubic-bezier(0.2, 0.65, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-js .reveal.reveal--left {
  transform: translate3d(-44px, 0, 0);
}

.has-js .reveal.reveal--right {
  transform: translate3d(44px, 0, 0);
}

.has-js .reveal.reveal--scale {
  transform: scale(0.94);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

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

  .site-nav {
    position: fixed;
    z-index: 999;
    top: 128px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    align-content: start;
    padding: 25px 20px 45px;
    overflow-y: auto;
    background: var(--navy);
  }

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

  .site-nav > a,
  .nav-dropdown > button {
    width: 100%;
    padding: 13px 0;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .button--nav {
    width: fit-content;
    margin: 18px 0 0;
  }

  .nav-dropdown__menu {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    visibility: visible;
    opacity: 1;
    padding: 7px 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown__menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
  }

  .nav-dropdown__menu a:hover {
    color: var(--gold-light);
    background: transparent;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .credentials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .topbar__inner {
    justify-content: center;
  }

  .topbar__inner > span,
  .topbar__links a:first-child {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .trust-strip {
    margin-top: 0;
  }

  .trust-strip .container {
    width: 100%;
  }

  .trust-strip__inner,
  .card-grid,
  .steps,
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .split,
  .profile-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split__image {
    min-height: 410px;
  }

  .split__image img {
    min-height: 410px;
  }

  .profile-card__visual {
    min-height: 340px;
  }

  .credentials-section {
    padding-top: 75px;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar__links {
    gap: 12px;
  }

  .site-header__inner {
    min-height: 76px;
  }

  .site-nav {
    top: 118px;
  }

  .brand {
    width: 205px;
  }

  .hero {
    min-height: 610px;
  }

  .hero__content {
    padding: 75px 0 95px;
  }

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

  .section {
    padding: 78px 0;
  }

  .trust-strip__inner,
  .card-grid,
  .steps,
  .article-grid,
  .sidebar,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    grid-column: auto;
    border-bottom: 0;
  }

  .practice-card {
    min-height: 245px;
  }

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

  .credential-logo {
    min-height: 125px;
    padding: 16px 12px;
  }

  .credential-logo img {
    height: 78px;
  }

  .split {
    gap: 42px;
  }

  .split__image,
  .split__image img {
    min-height: 360px;
  }

  .profile-card__body,
  .contact-details,
  .contact-form {
    padding: 27px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

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

  .call-float {
    display: flex;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
