:root {
  --navy-950: #061321;
  --navy-900: #071525;
  --navy-850: #0b1c2c;
  --navy-800: #102538;
  --navy-700: #173552;
  --ivory: #f3f0e8;
  --paper: #eee8dd;
  --sand: #d9cdbb;
  --champagne: #c6a664;
  --champagne-soft: #e8d6a3;
  --steel: #7d8793;
  --ink: #18202a;
  --muted: #5d6570;
  --line: rgba(198, 166, 100, 0.28);
  --glass: rgba(7, 21, 37, 0.74);
  --shadow: 0 24px 70px rgba(7, 21, 37, 0.18);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(198, 166, 100, 0.12), transparent 34rem),
    linear-gradient(180deg, #e9e1d4 0%, #f0ede6 42%, #e8e0d4 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(198, 166, 100, 0.45);
  color: var(--navy-950);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--champagne);
  color: var(--navy-950);
  transform: translateY(-160%);
  border-radius: 999px;
  font-weight: 800;
}

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

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

.section {
  padding: 112px 0;
  position: relative;
}

.section-dark {
  color: var(--ivory);
  background:
    radial-gradient(circle at 20% 5%, rgba(198, 166, 100, 0.24), transparent 28rem),
    radial-gradient(circle at 82% 30%, rgba(232, 214, 163, 0.12), transparent 25rem),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-850) 48%, #12273a 100%);
}

.section-soft {
  background: rgba(243, 240, 232, 0.58);
}

.section-deep {
  color: var(--ivory);
  background:
    linear-gradient(rgba(8, 24, 47, 0.94), rgba(8, 24, 47, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(198, 166, 100, 0.35), transparent 30rem);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(6, 19, 33, 0.82);
  border-bottom-color: rgba(243, 240, 232, 0.12);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.22));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(243, 240, 232, 0.86);
  font-size: 0.94rem;
  letter-spacing: 0.02em;
}

.nav-menu a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.nav-menu a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--champagne-soft);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid rgba(198, 166, 100, 0.55);
  color: var(--ivory);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(198, 166, 100, 0.13);
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  background: rgba(198, 166, 100, 0.22);
}

.nav-toggle {
  display: none;
  background: rgba(243, 240, 232, 0.1);
  border: 1px solid rgba(243, 240, 232, 0.22);
  border-radius: 14px;
  width: 46px;
  height: 46px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ivory);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 132px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(243, 240, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 240, 232, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, transparent 100%);
}

.hero-bg-mark {
  position: absolute;
  right: -2rem;
  top: 12%;
  font-family: var(--serif);
  font-size: clamp(11rem, 24vw, 25rem);
  color: rgba(243, 240, 232, 0.035);
  line-height: 1;
  letter-spacing: -0.14em;
  user-select: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.65;
}

.hero-orb-one {
  width: 320px;
  height: 320px;
  left: -140px;
  bottom: 12%;
  background: radial-gradient(circle, rgba(198, 166, 100, 0.22), transparent 68%);
}

.hero-orb-two {
  width: 260px;
  height: 260px;
  right: 15%;
  top: 18%;
  background: radial-gradient(circle, rgba(243, 240, 232, 0.12), transparent 68%);
}

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

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

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

h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-weight: 500;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  max-width: 880px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.25;
}

.hero-text {
  max-width: 690px;
  font-size: 1.1rem;
  color: rgba(243, 240, 232, 0.82);
}

.hero-actions,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--champagne-soft) 100%);
  color: var(--navy-950);
  box-shadow: 0 16px 36px rgba(198, 166, 100, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 44px rgba(198, 166, 100, 0.32);
}

.btn-ghost {
  color: var(--ivory);
  border-color: rgba(243, 240, 232, 0.26);
  background: rgba(243, 240, 232, 0.08);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(243, 240, 232, 0.14);
  border-color: rgba(243, 240, 232, 0.4);
}

.hero-badges {
  margin-top: 30px;
}

.hero-badges span {
  border: 1px solid rgba(243, 240, 232, 0.14);
  background: rgba(243, 240, 232, 0.07);
  color: rgba(243, 240, 232, 0.74);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.88rem;
}

.hero-card {
  border: 1px solid rgba(198, 166, 100, 0.32);
  padding: 16px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(243, 240, 232, 0.11), rgba(243, 240, 232, 0.04));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.hero-card-inner {
  min-height: 460px;
  border-radius: 28px;
  padding: 52px 34px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(198, 166, 100, 0.22), transparent 20rem),
    linear-gradient(155deg, rgba(6, 19, 33, 0.9), rgba(16, 37, 56, 0.86));
  position: relative;
  overflow: hidden;
}

.hero-card-inner::before,
.hero-card-inner::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(198, 166, 100, 0.2);
  border-radius: 999px;
}

.hero-card-inner::before {
  width: 350px;
  height: 350px;
  top: -160px;
  right: -140px;
}

.hero-card-inner::after {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -120px;
}

.hero-card img {
  width: min(310px, 100%);
  margin: auto;
  position: relative;
  z-index: 1;
}

.gold-line {
  width: 82px;
  height: 1px;
  background: var(--champagne);
  position: relative;
  z-index: 1;
}

.hero-card p {
  max-width: 280px;
  margin: 0 auto;
  color: rgba(243, 240, 232, 0.86);
  position: relative;
  z-index: 1;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.hero-photo-card {
  min-height: 500px;
  background:
    linear-gradient(rgba(7, 21, 37, 0.4), rgba(7, 21, 37, 0.62)),
    url("assets/hero-justice-photo.jpg") center/cover no-repeat;
}

.hero-photo-card::before,
.hero-photo-card::after {
  display: none;
}

.hero-photo-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.16;
}

.hero-photo-mark img {
  width: min(300px, 76%);
  filter: blur(0.3px);
}

.hero-photo-content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  place-items: center;
  gap: 24px;
  text-align: center;
}

.hero-photo-logo {
  width: min(330px, 100%);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.32));
}

.intro-strip {
  background: linear-gradient(90deg, #b69555, #ddc88b, #b69555);
  color: var(--navy-950);
}

.intro-strip-grid {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.intro-strip p,
.intro-strip span {
  margin: 0;
  font-weight: 900;
}

.intro-strip p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  letter-spacing: -0.02em;
}

.intro-strip span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

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

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-deep .section-heading p:not(.eyebrow) {
  color: rgba(243, 240, 232, 0.72);
}

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

.feature-card {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.9), rgba(238, 232, 221, 0.88));
  border: 1px solid rgba(16, 37, 56, 0.1);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--champagne), transparent);
}

.feature-number {
  display: inline-flex;
  color: rgba(24, 32, 42, 0.35);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 1.32rem;
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.services-section {
  background:
    radial-gradient(circle at 5% 0%, rgba(198, 166, 100, 0.14), transparent 25rem),
    linear-gradient(180deg, rgba(232, 224, 212, 0.8), rgba(243, 240, 232, 0.82));
}

.services-section .shell {
  position: relative;
}

.justice-accent {
  position: absolute;
  right: -46px;
  top: 140px;
  width: min(320px, 28vw);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  filter: saturate(0.9);
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-card {
  border-radius: 28px;
  background: rgba(255, 252, 245, 0.72);
  border: 1px solid rgba(16, 37, 56, 0.12);
  box-shadow: 0 20px 55px rgba(7, 21, 37, 0.11);
  overflow: hidden;
}

.service-card.is-open {
  background: rgba(255, 252, 245, 0.9);
  border-color: rgba(198, 166, 100, 0.52);
}

.service-trigger {
  width: 100%;
  text-align: left;
  padding: 28px 30px;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--ink);
}

.service-trigger strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.service-trigger small {
  display: block;
  max-width: 720px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.service-trigger b {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-850);
  color: var(--champagne-soft);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.service-card.is-open .service-trigger b {
  transform: rotate(45deg);
  background: var(--champagne);
  color: var(--navy-950);
}

.service-panel {
  padding: 0 30px 30px;
  animation: panelIn 0.28s ease both;
}

.service-intro {
  color: var(--muted);
  margin-bottom: 18px;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pill-list li {
  position: relative;
  padding: 14px 15px 14px 42px;
  border-radius: 16px;
  background: rgba(16, 37, 56, 0.055);
  border: 1px solid rgba(16, 37, 56, 0.08);
  color: #24313d;
  min-height: 54px;
  display: flex;
  align-items: center;
}

.pill-list li::before {
  content: '';
  position: absolute;
  left: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 5px rgba(198, 166, 100, 0.16);
}

.secondary-list {
  margin-top: 14px;
}

.more-toggle {
  margin-top: 20px;
  border: 1px solid rgba(198, 166, 100, 0.56);
  background: rgba(198, 166, 100, 0.13);
  color: var(--navy-850);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease;
}

.more-toggle:hover,
.more-toggle:focus-visible {
  transform: translateY(-2px);
  background: rgba(198, 166, 100, 0.23);
}

.more-content {
  animation: panelIn 0.22s ease both;
}

.service-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  padding-left: 4px;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

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

.approach-item {
  border: 1px solid rgba(243, 240, 232, 0.14);
  border-radius: 24px;
  background: rgba(243, 240, 232, 0.06);
  padding: 26px;
}

.approach-item h3 {
  color: var(--champagne-soft);
}

.approach-item p {
  color: rgba(243, 240, 232, 0.72);
  margin: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.timeline-item {
  background: rgba(255, 252, 245, 0.78);
  border: 1px solid rgba(16, 37, 56, 0.1);
  border-radius: 24px;
  padding: 24px;
  min-height: 255px;
  position: relative;
  box-shadow: 0 18px 40px rgba(7, 21, 37, 0.08);
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-850);
  color: var(--champagne-soft);
  font-weight: 900;
  margin-bottom: 24px;
}

.timeline-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.team-section {
  background:
    linear-gradient(110deg, rgba(7, 21, 37, 0.08), transparent 48%),
    rgba(238, 232, 221, 0.72);
}

.team-card {
  border-radius: 36px;
  padding: 54px;
  background:
    radial-gradient(circle at top right, rgba(198, 166, 100, 0.16), transparent 28rem),
    linear-gradient(135deg, rgba(255, 252, 245, 0.92), rgba(238, 232, 221, 0.82));
  border: 1px solid rgba(16, 37, 56, 0.12);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.team-card p {
  color: var(--muted);
}

.team-points {
  display: grid;
  gap: 16px;
}

.team-points article {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(16, 37, 56, 0.09);
  background: rgba(255, 252, 245, 0.62);
}

.team-points p {
  margin: 0;
}

.quote-band {
  padding: 110px 0;
}

.quote-content {
  text-align: center;
  display: grid;
  place-items: center;
}

.quote-content img {
  width: 110px;
  opacity: 0.9;
  margin-bottom: 26px;
}

.quote-content h2 {
  max-width: 920px;
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 32px;
}

.faq-section {
  background: rgba(243, 240, 232, 0.58);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 52px;
}

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

.faq-item {
  background: rgba(255, 252, 245, 0.76);
  border: 1px solid rgba(16, 37, 56, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-weight: 900;
  color: var(--ink);
}

.faq-item button span {
  color: var(--champagne);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item.is-open button span {
  transform: rotate(45deg);
}

.faq-item div {
  padding: 0 22px 22px;
  animation: panelIn 0.22s ease both;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  background:
    radial-gradient(circle at left bottom, rgba(198, 166, 100, 0.15), transparent 28rem),
    linear-gradient(180deg, #e8e0d4, #f1ede5);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 54px;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
}

.contact-box {
  margin-top: 30px;
  border-left: 3px solid var(--champagne);
  padding: 18px 0 18px 20px;
  background: rgba(255, 252, 245, 0.44);
  border-radius: 0 20px 20px 0;
}

.contact-box p {
  margin: 8px 0;
}

.contact-box a {
  color: var(--navy-700);
  font-weight: 800;
}

.contact-form {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.94), rgba(238, 232, 221, 0.88));
  border: 1px solid rgba(16, 37, 56, 0.12);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 32px;
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 850;
  color: #273444;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 37, 56, 0.14);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(255, 252, 245, 0.9);
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(198, 166, 100, 0.85);
  box-shadow: 0 0 0 4px rgba(198, 166, 100, 0.14);
}

.checkbox-line {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 12px !important;
  font-size: 0.9rem;
  color: var(--muted) !important;
  font-weight: 600 !important;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer {
  background: var(--navy-950);
  color: rgba(243, 240, 232, 0.72);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(243, 240, 232, 0.12);
}

.footer img {
  width: 150px;
  margin-bottom: 20px;
}

.footer h2 {
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne-soft);
  margin: 0 0 16px;
}

.footer a {
  display: table;
  margin: 9px 0;
  color: rgba(243, 240, 232, 0.76);
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--champagne-soft);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  color: rgba(243, 240, 232, 0.52);
}

.footer-bottom small:last-child {
  max-width: 640px;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.94);
  color: var(--navy-950);
  border: 1px solid rgba(16, 37, 56, 0.08);
  box-shadow: 0 18px 45px rgba(7, 21, 37, 0.18);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(7, 21, 37, 0.24);
}

.floating-whatsapp img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.floating-whatsapp span {
  font-weight: 900;
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.15s; }
.delay-3 { transition-delay: 0.22s; }
.delay-4 { transition-delay: 0.29s; }

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 101;
    background: rgba(6, 19, 33, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    font-size: 1.2rem;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .hero-grid,
  .split-grid,
  .team-card,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-card-inner {
    min-height: 360px;
  }

  .justice-accent {
    width: 230px;
    right: -40px;
    top: 150px;
    opacity: 0.06;
  }

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

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

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

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

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom small:last-child {
    text-align: left;
  }
}

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

  .section {
    padding: 76px 0;
  }

  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 124px;
  }

  .hero {
    padding: 118px 0 70px;
    min-height: auto;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.3rem);
  }

  .hero-card-inner {
    min-height: 320px;
    padding: 42px 24px;
  }

  .hero-photo-card {
    min-height: 360px;
    background-position: center top;
  }

  .hero-photo-mark img {
    width: min(230px, 74%);
  }

  .intro-strip-grid {
    min-height: 96px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 18px 0;
  }

  .service-trigger {
    padding: 23px 20px;
    align-items: flex-start;
  }

  .service-trigger b {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .service-panel {
    padding: 0 20px 24px;
  }

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

  .approach-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .team-card,
  .contact-form {
    padding: 26px;
    border-radius: 26px;
  }

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

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 11px 14px 11px 11px;
  }

  .floating-whatsapp span {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}


.footer-seo {
  color: var(--champagne-soft) !important;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-top: 10px !important;
}

.contact-form .btn {
  margin-top: 4px;
}
