* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #070E14;
}

body {
  font-family: 'Public Sans', system-ui, sans-serif;
  color: #0E1A24;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #070E14;
  min-height: 100dvh;
}

::selection {
  background: rgba(192, 181, 158, 0.4);
  color: #0E1A24;
}

/* Atmosphere */
.site-bg {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(192, 181, 158, 0.1), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(33, 69, 86, 0.16), transparent 50%),
    linear-gradient(180deg, #EEF2F5 0%, #E2E8ED 100%);
}

/* ——— Nav brand lockup (wing + ALL CAPS wordmark) ——— */
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
  min-width: 0;
  transition: opacity 0.25s ease;
}

.nav-brand:hover {
  opacity: 0.88;
}

.nav-brand__mark {
  display: block;
  height: 1.55rem;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.35));
}

.nav-brand__word {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4em;
  font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  line-height: 1;
  white-space: nowrap;
  color: #C0B59E;
  text-transform: uppercase;
}

.nav-brand__holz,
.nav-brand__law {
  font-size: inherit;
  letter-spacing: inherit;
}

@media (min-width: 640px) {
  .nav-brand {
    gap: 0.75rem;
  }

  .nav-brand__mark {
    height: 1.7rem;
  }

  .nav-brand__word {
    font-size: 1.05rem;
    letter-spacing: 0.16em;
  }
}

@media (min-width: 1024px) {
  .nav-brand__mark {
    height: 1.8rem;
  }

  .nav-brand__word {
    font-size: 1.1rem;
    letter-spacing: 0.17em;
  }
}

/* ——— Hero ——— */
.hero-plane {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #070E14;
}

.hero-plane__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 12%;
  transform-origin: 78% 30%;
  opacity: 0;
  animation:
    heroMediaFade 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    heroKen 22s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-plane__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* Soft brass/harbor atmosphere so left field isn't dead void */
    radial-gradient(ellipse 70% 55% at 18% 48%, rgba(33, 69, 86, 0.45), transparent 70%),
    radial-gradient(ellipse 45% 40% at 8% 70%, rgba(192, 181, 158, 0.07), transparent 65%),
    /* Keep portrait readable; deepen left for type */
    linear-gradient(90deg, rgba(7, 14, 20, 0.88) 0%, rgba(7, 14, 20, 0.62) 34%, rgba(7, 14, 20, 0.22) 58%, transparent 72%),
    linear-gradient(180deg, rgba(7, 14, 20, 0.55) 0%, rgba(7, 14, 20, 0.18) 32%, rgba(7, 14, 20, 0.35) 62%, rgba(7, 14, 20, 0.88) 100%);
}

.hero-plane__frame {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 10.75rem 1.25rem 3.25rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-plane__copy {
  max-width: 34rem;
  /* Pull copy toward the portrait so the split feels intentional, not left-orphaned */
  margin-left: 0;
  margin-right: auto;
}

.hero-rule {
  width: 0;
  height: 2px;
  margin-top: 1.35rem;
  background: #C0B59E;
  opacity: 0;
  animation: heroRuleDraw 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.32s forwards;
}

@keyframes heroKen {
  from { transform: scale(1.08) translateX(2%); }
  to { transform: scale(1.0) translateX(0); }
}

@keyframes heroMediaFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroRuleDraw {
  from { width: 0; opacity: 0; }
  to { width: 3rem; opacity: 1; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-enter {
  opacity: 0;
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-enter-soft {
  opacity: 0;
  animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-delay-1 { animation-delay: 0.1s; }
.hero-delay-2 { animation-delay: 0.26s; }
.hero-delay-3 { animation-delay: 0.42s; }
.hero-delay-4 { animation-delay: 0.56s; }
.hero-delay-5 { animation-delay: 0.7s; }

@media (min-width: 640px) {
  .hero-plane__frame {
    padding: 11.25rem 2rem 3.5rem;
  }

  .hero-plane__copy {
    max-width: 36rem;
  }
}

@media (min-width: 1024px) {
  .hero-plane {
    /* Shorter than full viewport — less empty scroll */
    min-height: 68svh;
    max-height: 760px;
  }

  .hero-plane__media {
    object-position: 88% 10%;
    /* Clear fixed nav so head isn't jammed under menu */
    top: 4.75rem;
    height: auto;
    bottom: 0;
  }

  .hero-plane__veil {
    background:
      radial-gradient(ellipse 55% 50% at 22% 52%, rgba(33, 69, 86, 0.5), transparent 68%),
      radial-gradient(ellipse 35% 35% at 12% 68%, rgba(192, 181, 158, 0.08), transparent 60%),
      linear-gradient(90deg, rgba(7, 14, 20, 0.82) 0%, rgba(7, 14, 20, 0.48) 38%, rgba(7, 14, 20, 0.12) 58%, transparent 70%),
      linear-gradient(180deg, rgba(7, 14, 20, 0.42) 0%, rgba(7, 14, 20, 0.12) 28%, rgba(7, 14, 20, 0.28) 68%, rgba(7, 14, 20, 0.82) 100%);
  }

  .hero-plane__frame {
    /* Asymmetric: copy occupies left ~48%, optical lock to portrait */
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    padding: 10.5rem 2rem 3.25rem;
    min-height: 68svh;
    max-height: 760px;
  }

  .hero-plane__copy {
    max-width: 32rem;
    /* Nudge right into the composition mid-zone */
    justify-self: end;
    padding-right: 1.5rem;
    width: 100%;
  }
}

@media (min-width: 1280px) {
  .hero-plane__copy {
    max-width: 34rem;
    padding-right: 2.5rem;
  }

  .hero-plane__media {
    object-position: 92% 8%;
  }
}

@media (max-width: 639px) {
  .hero-plane {
    align-items: flex-start;
    /* Fill the viewport so credentials sit below the fold */
    min-height: 100svh;
  }

  .hero-plane__media {
    object-position: 70% 12%;
  }

  .hero-plane__veil {
    background:
      linear-gradient(180deg, rgba(7, 14, 20, 0.55) 0%, rgba(7, 14, 20, 0.3) 32%, rgba(7, 14, 20, 0.78) 58%, rgba(7, 14, 20, 0.97) 100%),
      linear-gradient(90deg, rgba(7, 14, 20, 0.5) 0%, transparent 60%);
  }

  .hero-plane__frame {
    min-height: 100svh;
    padding: 8.5rem 1.35rem 3.5rem;
    display: flex;
    align-items: center;
  }

  .hero-plane__copy {
    max-width: 100%;
  }
}

.nav-shell {
  position: fixed;
  top: 2.25rem; /* below Se Habla Español utility bar */
  left: 0;
  right: 0;
  z-index: 50;
  background: #0E1A24;
  transition: box-shadow 0.3s ease;
}

.nav-shell.nav-transparent,
.nav-shell.nav-scrolled {
  background: #0E1A24;
  backdrop-filter: none;
}

.nav-shell.nav-scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

/* Mobile: solid chrome + menu panel match header */
@media (max-width: 1023px) {
  .nav-shell,
  .nav-shell.nav-transparent,
  .nav-shell.nav-scrolled {
    background: #0E1A24;
    backdrop-filter: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  }

  #mobile-menu {
    background: #0E1A24;
  }

  .nav-bar {
    position: relative;
  }

  .nav-brand {
    gap: 0;
  }

  .nav-brand__mark {
    height: 1.4rem;
  }

  /* Center wordmark between logo and hamburger */
  .nav-brand__word {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.92rem;
    letter-spacing: 0.14em;
    pointer-events: none;
  }

  #mobile-toggle {
    position: relative;
    z-index: 10;
  }
}

/* ——— Top utility: slightly darker ink than the menu bar ——— */
.top-utility {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 2.25rem;
  background: #070E14;
  color: #C0B59E;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(192, 181, 158, 0.14);
}

.top-utility__sehabla {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 10px;
  white-space: nowrap;
  color: #C0B59E;
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid rgba(192, 181, 158, 0.35);
  overflow: hidden;
}

.lang-toggle__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(192, 181, 158, 0.7);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  cursor: pointer;
  line-height: 1.2;
}

.lang-toggle__btn.is-active {
  background: #C0B59E;
  color: #070E14;
}

.btn-brass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #C0B59E;
  color: #0E1A24;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-brass:hover {
  background: #D2C8B4;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.btn-ghost:hover {
  border-color: #C0B59E;
  background: rgba(192, 181, 158, 0.1);
}

.btn-ghost-ink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(14, 26, 36, 0.2);
  color: #0E1A24;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.btn-ghost-ink:hover {
  border-color: #C0B59E;
  background: rgba(192, 181, 158, 0.15);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-phone:hover {
  color: #fff;
}

.nav-phone__icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 15px;
  padding: 0.35rem 0.15rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.hero-phone:hover {
  color: #C0B59E;
  background: transparent;
  border-color: transparent;
}

.hero-phone__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Single WhatsApp affordance — FAB only */
.wa-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  background: #128C7E;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-fab svg {
  width: 1.45rem;
  height: 1.45rem;
}

.wa-fab span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wa-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

@media (max-width: 480px) {
  .wa-fab {
    right: 0.9rem;
    bottom: 0.9rem;
  }
}

/* ——— Mobile breathing room ——— */
@media (max-width: 639px) {
  .hero-plane {
    min-height: 100svh;
    align-items: flex-start;
  }

  .hero-plane__frame {
    min-height: 100svh;
    padding: 8.5rem 1.35rem 3.5rem;
    display: flex;
    align-items: center;
  }

  .hero-plane__copy h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem) !important;
    line-height: 1.14 !important;
  }

  .hero-plane__copy .hero-rule {
    margin-top: 1.85rem;
  }

  .hero-plane__copy > p {
    font-size: 1.05rem !important;
    line-height: 1.55 !important;
  }

  .hero-plane__copy > p[data-i18n="home.lead"] {
    margin-top: 1.85rem !important;
  }

  .hero-plane__copy > p[data-i18n="home.meta"] {
    margin-top: 1.75rem !important;
  }

  .hero-plane__copy .hero-ctas,
  .hero-plane__copy .mt-6,
  .hero-plane__copy .mt-8 {
    margin-top: 2.75rem !important;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 0.9rem;
  }

  .hero-plane__copy .btn-brass {
    width: auto;
    max-width: 100%;
    padding: 0.62rem 1.15rem;
    font-size: 11px;
    letter-spacing: 0.05em;
    border-radius: 999px;
  }

  .cred-strip > div,
  .cred-strip__grid {
    gap: 0.85rem 1.25rem !important;
    padding-top: 1.35rem !important;
    padding-bottom: 1.35rem !important;
    font-size: 11px !important;
    letter-spacing: 0.04em !important;
  }

  section.max-w-6xl {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .practice-link {
    aspect-ratio: 16 / 10;
  }

  .practice-link h3 {
    font-size: 1.55rem !important;
  }

  .faq-item button span {
    font-size: 1.15rem !important;
  }
}

.accent-rule {
  width: 48px;
  height: 2px;
  background: #C0B59E;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.practice-link {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
}

.practice-link img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.practice-link:hover img {
  transform: scale(1.05);
}

.practice-link__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 14, 20, 0.88) 100%);
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(14, 26, 36, 0.1);
}

.faq-item button {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0;
  font-family: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

.faq-item .faq-panel {
  display: none;
  padding: 0 0 1.25rem;
  color: #5A6B78;
  line-height: 1.7;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.faq-item .faq-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

/* Two translatable spans rather than a <br>, which the i18n pass would strip */
.faq-head-line {
  display: inline;
}

@media (max-width: 639px) {
  .faq-head-line {
    display: block;
  }
}

.page-hero {
  position: relative;
  min-height: 52svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #070E14;
  padding-top: 8.5rem;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  opacity: 0.55;
}

.page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 14, 20, 0.35), rgba(7, 14, 20, 0.92));
}

@media (min-width: 1024px) {
  .page-hero {
    /* Wide, short banners over-crop tall photos — give them more room
       so heads (and, where relevant, feet) stay in frame. */
    min-height: 66svh;
    max-height: 760px;
  }
}

.home-about-photo img {
  height: min(72vw, 440px);
}

@media (min-width: 1024px) {
  .home-about-photo img {
    height: 520px;
  }
}

.about-portrait-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .about-portrait-desktop {
    display: block;
    margin: 0.35rem 0 0.5rem;
  }

  .about-portrait-desktop img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
  }

  /* Credentials stay pinned while the bio column scrolls, then release into The Team */
  .about-cred-sticky {
    position: sticky;
    top: 9rem; /* nav clearance + breathing room above the box */
  }
}

.about-team__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #0a1520;
}

.about-team__img {
  display: block;
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center 22%;
  will-change: transform;
  transform: translate3d(0, var(--parallax-y, -6%), 0);
}

@media (prefers-reduced-motion: reduce) {
  .about-team__img {
    height: 100%;
    transform: none;
    will-change: auto;
  }
}

.mobile-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-drawer.is-open {
  max-height: 80vh;
}

.cred-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cred-strip__grid {
  align-items: start;
}

@media (min-width: 1024px) {
  .cred-strip__grid {
    padding-top: 2.75rem; /* py-6 + roughly one text line */
  }
}

@media (max-width: 1023px) {
  .cred-strip__grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 1.25rem;
    row-gap: 0.85rem;
  }

  .cred-strip__grid > p {
    line-height: 1.35;
    font-size: 11px;
  }

  .cred-strip__grid > p:nth-child(odd) {
    text-align: left;
    padding-right: 0.25rem;
  }

  .cred-strip__grid > p:nth-child(even) {
    text-align: left;
    padding-left: 0.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.home-portrait-mobile,
.about-portrait-mobile {
  display: none;
}

.home-portrait-mobile__img {
  display: block;
  width: 100%;
  height: 78vw;
  max-height: 560px;
  object-fit: cover;
  object-position: center 12%;
}

.hero-plane__media--mobile {
  display: none;
}

@media (max-width: 1023px) {
  /* Portrait lives under the hero — atmosphere fills the banner instead */
  .hero-plane__media--portrait {
    opacity: 0 !important;
    animation: none !important;
  }

  .hero-plane__media--mobile {
    display: block;
    object-position: 42% 30%;
    animation: heroMediaFade 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero-plane__veil {
    background:
      radial-gradient(ellipse 65% 45% at 78% 28%, rgba(33, 69, 86, 0.25), transparent 60%),
      linear-gradient(180deg, rgba(7, 14, 20, 0.58) 0%, rgba(7, 14, 20, 0.48) 36%, rgba(7, 14, 20, 0.86) 70%, rgba(7, 14, 20, 0.97) 100%),
      linear-gradient(90deg, rgba(7, 14, 20, 0.72) 0%, rgba(7, 14, 20, 0.42) 48%, rgba(7, 14, 20, 0.55) 100%) !important;
  }

  /* Push credentials below the first screen; keep copy under the nav */
  .hero-plane {
    min-height: 100svh;
  }

  .hero-plane__frame {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-bottom: 3.5rem;
  }

  .home-portrait-mobile {
    display: block;
    background: #070E14;
  }

  .about-portrait-mobile {
    display: block;
    padding: 2rem 1.25rem 0;
    background: transparent;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .about-portrait-mobile {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-plane__media--mobile {
    display: none !important;
  }

  .home-portrait-mobile,
  .about-portrait-mobile {
    display: none;
  }
}

.form-field {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(14, 26, 36, 0.12);
  padding: 0.9rem 1rem;
  font: inherit;
  color: #0E1A24;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field:focus {
  outline: none;
  border-color: #C0B59E;
  box-shadow: 0 0 0 3px rgba(192, 181, 158, 0.2);
}

.form-field::placeholder {
  color: #7A8B97;
}

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

.site-footer {
  background: #070E14;
  /* Paint through the iOS home-indicator / bottom bezel + overscroll */
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 50vh 0 50vh #070E14;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.06em;
}

.footer-credit__link {
  color: rgba(192, 181, 158, 0.75);
  transition: color 0.2s ease;
}

.footer-credit__link:hover {
  color: #C0B59E;
}

@media (prefers-reduced-motion: reduce) {
  .hero-plane__media,
  .hero-enter,
  .hero-enter-soft,
  .hero-rule,
  .fade-up,
  .practice-link img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-rule {
    width: 3rem;
  }
}
