:root {
  --color-primary: #4175fc;
  --color-primary-hover: #4b4f58;
  --color-dark: #11213b;
  --color-dark-2: #101218;
  --color-text: #494b51;
  --color-light: #f3f5f5;
  --color-white: #ffffff;
  --color-muted: #d9d9d9;
  --color-panel: #dfdbdb;
  --color-location: #4972a0;
  --shadow-card: 0 25px 80px -10px rgba(23, 24, 25, 0.15);
  --shadow-portrait: 24px -18px 11px 4px #070420;
  --radius-md: 12px;
  --container: 1240px;
  --color-gold: #cfa34a;
  --color-gold-soft: rgba(207, 163, 74, 0.24);
  --color-navy-deep: #091321;
  --color-navy-card: #202b3a;
  --color-navy-card-2: #243146;
  --color-line-dark: rgba(208, 171, 88, 0.12);
  --color-text-soft: #98a3b6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-dark);
  color: var(--color-text);
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

p {
  margin: 0;
}

#root {
  min-height: 100vh;
}

.page-shell {
  overflow: hidden;
}

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

.section-divider {
  width: 80px;
  height: 6px;
  background: var(--color-primary);
}

.button-primary,
.button-secondary,
.mobile-toggle {
  border: 0;
  border-radius: 4px;
  background: var(--color-gold);
  color: #091321;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  padding: 14px 28px;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.button-primary:hover,
.button-secondary:hover,
.mobile-toggle:hover {
  background: #ddb15a;
  transform: translateY(-1px);
}

.site-header {
  left: 0;
  padding: 18px 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 0.25s ease, box-shadow 0.25s ease,
    backdrop-filter 0.25s ease;
  z-index: 30;
}

.site-header.is-scrolled {
  background: rgba(17, 33, 59, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(7, 14, 29, 0.2);
}

.header-row {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.brand-mark {
  flex: 0 0 auto;
}

.brand-mark img {
  width: 110px;
}

.header-right {
  align-items: center;
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav {
  display: flex;
}

.desktop-nav ul,
.footer-nav ul,
.mobile-menu ul {
  align-items: center;
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav a,
.footer-nav a,
.mobile-menu a {
  transition: color 0.2s ease;
}

.desktop-nav a {
  color: var(--color-white);
}

.desktop-nav a:hover,
.footer-nav a:hover,
.mobile-menu a:hover {
  color: var(--color-primary);
}

.desktop-nav a.is-active,
.footer-nav a.is-active,
.mobile-menu a.is-active {
  color: var(--color-primary);
}

.social-links {
  align-items: center;
  display: flex;
  gap: 14px;
}

.social-icon {
  align-items: center;
  color: var(--color-white);
  display: inline-flex;
  height: 20px;
  justify-content: center;
  opacity: 0.92;
  width: 20px;
}

.social-icon.is-facebook {
  color: #557dbc;
}

.social-icon.is-instagram {
  color: #8a3ab9;
}

.mobile-toggle,
.mobile-menu {
  display: none;
}

.hero {
  background: linear-gradient(
      90deg,
      rgba(16, 18, 24, 0.58) 0%,
      rgba(16, 18, 24, 0.24) 42%,
      rgba(16, 18, 24, 0.04) 75%
    ),
    url("./images/hero-bg.png") center center / cover no-repeat;
  min-height: 760px;
  padding: 200px 0 140px;
  position: relative;
}

.hero-copy {
  max-width: 660px;
  padding-right: 0;
}

.hero.is-inner {
  min-height: 30vh;
  padding: 150px 0 100px;
}

.hero.is-inner .hero-copy {
  max-width: 620px;
}

.hero.hero-contained {
  border-radius: 12px;
  margin: 112px auto 0;
  overflow: hidden;
  width: min(1380px, calc(100% - 88px));
}

.hero-eyebrow {
  color: var(--color-primary);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin-bottom: 18px;
}

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

.hero-title {
  color: var(--color-white);
  font-size: 55px;
  margin-bottom: 26px;
  max-width: 700px;
}

.hero-text {
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.7;
  max-width: 660px;
}

.about-section {
  background: var(--color-panel);
  margin-top: -83px;
  padding: 50px 0 6px;
  position: relative;
  z-index: 2;
}

.about-grid {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 55fr 45fr;
}

.about-copy {
  padding-right: 50px;
}

.about-copy .section-divider {
  margin-bottom: 20px;
}

.about-copy h2 {
  color: var(--color-dark-2);
  font-size: 36px;
}

.about-subtitle {
  color: var(--color-dark-2);
  font-size: 18px;
  margin-top: 20px;
}

.about-section .section-divider,
.awards-section .section-divider,
.process-section:not(.process-section-dark) .section-divider,
.page-intro-section .section-divider,
.team-section .section-divider {
  background: var(--color-gold);
}

.about-section .about-subtitle,
.page-intro-section .page-intro-lead {
  color: #9f7a2f;
}

.about-stack {
  margin-top: 30px;
}

.about-intro {
  margin-bottom: 42px;
}

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

.about-stack h4 {
  color: var(--color-dark-2);
  font-size: 22px;
  margin-bottom: 12px;
}

.about-portrait-wrap {
  display: flex;
  justify-content: flex-end;
  padding: 40px 40px 0 0;
}

.about-portrait {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-portrait);
  margin-bottom: 201px;
  padding-top: 38px;
  width: 340px;
}

.stats-section {
  background: var(--color-dark);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 100px 0;
}

.stats-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  text-align: center;
}

.stat-icon {
  color: var(--color-primary);
  display: inline-flex;
  margin-bottom: 15px;
}

.about-section .about-highlight-grid h4,
.awards-section .award-card h4,
.page-intro-section h2,
.team-section .team-card h5 {
  color: #b68833;
}

.stats-section .stat-icon {
  color: var(--color-gold);
}

.stat-icon svg {
  height: 32px;
  width: 32px;
}

.stat-card h3 {
  color: var(--color-white);
  font-size: 28px;
  margin-bottom: 10px;
}

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

.awards-section {
  background: var(--color-panel);
  padding: 100px 0;
}

.section-head {
  margin-bottom: 30px;
}

.section-head .section-divider {
  margin-bottom: 20px;
}

.section-head h2 {
  color: var(--color-dark-2);
  font-size: 36px;
  margin-bottom: 18px;
}

.section-head.is-centered {
  text-align: center;
}

.section-head.is-centered .section-divider {
  margin: 0 auto 20px;
}

.section-lead {
  color: var(--color-text);
  max-width: 600px;
}

.section-head.is-centered .section-lead {
  margin: 20px auto 0;
  max-width: 620px;
}

.awards-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.award-card,
.process-card,
.office-card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.award-card {
  padding: 35px;
}

.award-card img {
  margin-bottom: 20px;
  width: 58px;
}

.award-card h4,
.process-card h4 {
  color: var(--color-dark-2);
  font-size: 22px;
  margin-bottom: 10px;
}

.award-card p,
.process-card p,
.area-card p {
  font-size: 14px;
}

.areas-section {
  background: var(--color-dark);
  padding: 100px 0 90px;
}

.areas-grid {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
}

.areas-media .section-divider {
  margin-bottom: 20px;
}

.areas-media h2 {
  color: #6f7680;
  font-size: 36px;
}

.areas-media .section-lead {
  margin-top: 20px;
  max-width: 560px;
  color: var(--color-white);
}

.areas-photo {
  margin-top: 30px;
  padding-right: 30px;
}

.areas-photo img {
  box-shadow: var(--shadow-portrait);
  width: 100%;
}

.areas-column {
  display: grid;
  gap: 40px;
}

.areas-column.offset-top {
  margin-top: 40px;
}

.area-card h4 {
  color: #7d848e;
  font-size: 22px;
  margin-bottom: 8px;
}

.area-card p {
  color: var(--color-white);
}

.process-section {
  background: var(--color-panel);
  padding: 100px 0 100px;
}

.process-section-dark {
  background: var(--color-dark);
}

.process-section-dark .section-head h2,
.process-section-dark .section-lead {
  color: var(--color-white);
}

.process-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.process-card {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  min-height: 265px;
  padding: 20px;
}

.process-card img {
  margin-bottom: 15px;
  opacity: 0.35;
  width: 150px;
}

.location-section {
  background: var(--color-location);
  padding: 0 0 100px;
}

.location-shell {
  text-align: center;
}

.location-shell h3 {
  color: var(--color-dark-2);
  font-size: 28px;
}

.location-shell .section-lead {
  margin: 20px auto 0;
  max-width: 620px;
}

.office-card {
  margin: 20px auto 0;
  max-width: 420px;
  padding: 35px;
  text-align: left;
}

.office-head {
  align-items: flex-start;
  color: var(--color-dark-2);
  display: flex;
  gap: 10px;
}

.office-head h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.office-icon {
  color: var(--color-dark-2);
  flex: 0 0 auto;
  margin-top: 2px;
}

.cta-section {
  background: linear-gradient(rgba(16, 18, 24, 0.8), rgba(16, 18, 24, 0.8)),
    url("./images/cta-bg.jpg") center center / cover no-repeat;
  padding: 100px 0;
}

.cta-shell {
  margin: 0 auto;
  max-width: 580px;
  text-align: center;
}

.cta-shell .section-divider {
  background: var(--color-white);
  margin: 0 auto 20px;
}

.cta-shell h2 {
  color: var(--color-white);
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-shell p {
  color: var(--color-white);
}

.cta-shell .button-primary {
  display: inline-flex;
  margin-top: 35px;
}

.site-footer {
  background: #11213b;
  padding: 70px 0 28px;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: flex;
  justify-content: center;
}

.footer-brand img {
  width: 150px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.footer-nav a {
  color: var(--color-white);
}

.footer-note {
  color: var(--color-white);
  margin-top: 28px;
  opacity: 0.92;
}

.page-intro-section {
  background: #dfdbdb;
  padding: 55px 0 30px;
}

.page-intro-grid {
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: 55fr 45fr;
}

.page-intro-copy {
  padding-right: 42px;
}

.page-intro-copy .section-divider,
.contact-copy .section-divider {
  margin-bottom: 20px;
}

.page-intro-copy h2,
.contact-copy h2 {
  color: var(--color-dark-2);
  font-size: 36px;
}

.page-intro-lead {
  color: var(--color-dark-2);
  margin: 24px 0 18px;
}

.page-intro-media {
  display: flex;
  justify-content: flex-end;
  padding: 0 34px 40px 0;
}

.page-intro-media img {
  border-radius: var(--radius-md);
  box-shadow: 20px -20px 10px 0 #070420;
  width: min(100%, 420px);
}

.values-section {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #f3f5f5 50%, #f3f5f5 100%);
  padding: 100px 0;
}

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

.value-card,
.specialty-card,
.feature-logo-card,
.faq-item,
.contact-form {
  background: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.value-card,
.specialty-card,
.feature-logo-card {
  padding: 30px;
}

.values-section .value-card {
  border-top: 3px solid rgba(207, 163, 74, 0.7);
}

.value-card h4,
.specialty-card h4,
.feature-logo-card h4,
.contact-copy h4 {
  color: var(--color-dark-2);
  font-size: 22px;
  margin-bottom: 12px;
}

.team-section {
  background: var(--color-dark);
  padding: 100px 0;
}

.team-section .section-head h2,
.team-section .section-lead {
  color: var(--color-white);
}

.team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.team-card {
  background: #f3f5f5;
  border: 1px solid rgba(207, 163, 74, 0.3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 42px 28px 32px;
  text-align: center;
}

.team-card img {
  border-radius: 999px;
  height: 158px;
  margin: 0 auto 24px;
  object-fit: cover;
  width: 158px;
}

.team-card h5 {
  color: var(--color-primary);
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  margin: 0 0 10px;
}

.specialties-list-section {
  background: #ffffff;
  padding: 100px 0;
}

.specialties-list-section .section-head h2,
.feature-logo-section .section-head h2,
.faq-section .section-head h2 {
  color: var(--color-dark-2);
}

.specialty-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.specialty-card p,
.feature-logo-card p,
.team-card p,
.value-card p,
.faq-answer {
  font-size: 14px;
}

.feature-logo-section {
  background: #ffffff;
  padding: 100px 0;
}

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

.feature-logo-card {
  text-align: center;
}

.feature-logo-card img {
  height: 72px;
  margin: 0 auto 22px;
}

.legal-practice-section {
  background: var(--color-navy-deep);
  padding: 46px 0 92px;
}

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

.legal-practice-card {
  background: var(--color-navy-card-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--color-white);
  min-height: 292px;
  padding: 26px 26px 24px;
}

.legal-practice-card.is-highlighted {
  background: #242c36;
  border-color: rgba(207, 163, 74, 0.62);
  box-shadow: inset 0 3px 0 0 var(--color-gold);
}

.legal-practice-head {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.legal-practice-icon {
  color: var(--color-gold);
  display: inline-flex;
  height: 26px;
  width: 26px;
}

.legal-practice-icon svg {
  height: 100%;
  width: 100%;
}

.legal-practice-card h3 {
  color: #f1ece4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.18;
}

.legal-practice-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-practice-list li {
  align-items: center;
  border-top: 1px solid var(--color-line-dark);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  gap: 14px;
  min-height: 42px;
  padding: 10px 0;
}

.legal-practice-bullet {
  background: var(--color-gold);
  border-radius: 999px;
  flex: 0 0 auto;
  height: 6px;
  width: 6px;
}

.legal-practice-link {
  color: var(--color-gold);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 16px;
  text-transform: uppercase;
}

.legal-practice-link span {
  margin-left: 6px;
}

.legal-process-section {
  background: #07111d;
  padding: 90px 0 96px;
}

.legal-process-shell {
  align-items: start;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.legal-section-eyebrow {
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 28px;
  position: relative;
  text-transform: uppercase;
}

.legal-section-eyebrow::before {
  background: var(--color-gold);
  content: "";
  display: inline-block;
  height: 2px;
  margin-right: 12px;
  vertical-align: middle;
  width: 12px;
}

.legal-process-copy h2 {
  color: #f2ede6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 24px;
}

.legal-process-copy h2 span {
  color: var(--color-gold);
  font-style: italic;
}

.legal-process-copy p {
  color: var(--color-text-soft);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 34px;
  max-width: 540px;
}

.legal-process-button {
  background: var(--color-gold);
  color: #091321;
  letter-spacing: 0.14em;
}

.legal-process-button:hover {
  background: #ddb15a;
  color: #091321;
}

.legal-process-list {
  display: grid;
}

.legal-process-step {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: 42px 1fr;
  padding: 16px 0 28px;
}

.legal-process-step.has-divider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-process-index {
  align-items: center;
  border: 1px solid rgba(207, 163, 74, 0.58);
  border-radius: 999px;
  color: var(--color-gold);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  margin-top: 2px;
  width: 32px;
}

.legal-process-body h4 {
  color: #f2ede6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}

.legal-process-body p {
  color: var(--color-text-soft);
  font-size: 15px;
}

.faq-section {
  background: #f3f5f5;
  padding: 100px 0;
}

.faq-shell {
  max-width: 900px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-trigger {
  align-items: center;
  background: transparent;
  color: var(--color-dark-2);
  display: flex;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0;
  padding: 24px 28px;
  text-align: left;
  text-transform: none;
  width: 100%;
}

.faq-symbol {
  color: var(--color-primary);
  font-size: 26px;
  line-height: 1;
}

.faq-answer {
  padding: 0 28px 26px;
}

.contact-studio-section {
  background: #07111d;
  padding: 74px 0 96px;
}

.contact-studio-shell {
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
}

.contact-form-panel,
.contact-info-panel {
  color: var(--color-white);
}

.contact-panel-eyebrow {
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.contact-field {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.contact-field span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(207, 163, 74, 0.2);
  border-radius: 4px;
  color: #f6f7f8;
  padding: 15px 16px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

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

.contact-select-wrap {
  position: relative;
}

.contact-select-wrap::after {
  color: rgba(255, 255, 255, 0.5);
  content: "▾";
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.contact-field select {
  appearance: none;
  width: 100%;
}

.contact-submit-button {
  background: var(--color-gold);
  border: 0;
  border-radius: 4px;
  color: #091321;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.18em;
  margin-top: 8px;
  padding: 16px 28px;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease;
  width: 100%;
}

.contact-submit-button:hover {
  background: #ddb15a;
  transform: translateY(-1px);
}

.contact-submit-note {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  margin-top: 16px;
  text-align: center;
}

.contact-submit-status {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(207, 163, 74, 0.18);
  border-radius: 8px;
  color: #f0f1f2;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 16px;
  padding: 12px 14px;
}

.contact-submit-status.is-success {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.28);
  color: #b6f3cc;
}

.contact-submit-status.is-error {
  background: rgba(220, 88, 88, 0.12);
  border: 1px solid rgba(220, 88, 88, 0.28);
  color: #ffd2d2;
}

.contact-info-list {
  display: grid;
}

.contact-info-row {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: 42px 1fr;
  padding: 12px 0 22px;
}

.contact-info-row.has-divider {
  border-bottom: 1px solid rgba(207, 163, 74, 0.12);
  margin-bottom: 10px;
}

.contact-info-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  color: #f0618f;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

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

.contact-info-body h4 {
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-info-body p {
  color: #f0f1f2;
  font-size: 16px;
  line-height: 1.45;
}

.contact-map-preview {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(207, 163, 74, 0.22);
  border-radius: 10px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
  min-height: 178px;
  padding: 28px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.contact-map-preview:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(207, 163, 74, 0.38);
  transform: translateY(-1px);
}

.contact-map-icon {
  color: var(--color-gold);
  display: inline-flex;
  height: 30px;
  width: 30px;
}

.contact-map-icon svg {
  height: 100%;
  width: 100%;
}

.contact-map-preview strong {
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-map-preview span:last-child {
  color: rgba(255, 255, 255, 0.44);
  font-size: 14px;
}

.contact-overlap-section {
  background: #ffffff;
  padding: 0;
}

.contact-strip {
  background: #11213b;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
  padding: 30px 20px;
  position: relative;
  z-index: 2;
}

.contact-strip-item {
  padding: 10px 24px;
  text-align: center;
}

.contact-strip-item.is-bordered {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-strip-item h5 {
  color: var(--color-primary);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin: 0 0 12px;
}

.contact-strip-item p {
  color: var(--color-white);
  font-size: 14px;
}

.map-frame {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 0;
  display: block;
  height: auto;
  max-width: 442px;
  width: 100%;
}

.floating-whatsapp {
  align-items: center;
  background: #25d366;
  border-radius: 999px;
  bottom: 28px;
  box-shadow: 0 16px 32px rgba(17, 33, 59, 0.18);
  color: #ffffff;
  display: inline-flex;
  height: 60px;
  justify-content: center;
  position: fixed;
  right: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    filter 0.2s ease;
  width: 60px;
  z-index: 40;
}

.floating-whatsapp:hover {
  background: #22c55e;
  box-shadow: 0 20px 40px rgba(17, 33, 59, 0.22);
  filter: saturate(1.02);
  transform: translateY(-2px);
}

.floating-whatsapp svg {
  height: 30px;
  width: 30px;
}

.contact-combined-section {
  background: #ffffff;
  padding: 100px 0;
}

.contact-combined-grid {
  align-items: start;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

.contact-map-card {
  align-self: start;
  background: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 28px;
}

.contact-copy {
  padding: 18px 6px 0;
}

.contact-form-row {
  margin-top: 42px;
}

.contact-copy h4 {
  margin-top: 28px;
}

.contact-form {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  padding: 32px;
}

.form-grid {
  display: grid;
  gap: 20px;
}

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

.field {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.field span {
  color: var(--color-dark-2);
  font-size: 14px;
}

.field input,
.field textarea {
  background: #ffffff;
  border: 1px solid #d8dde4;
  border-radius: 8px;
  color: var(--color-dark-2);
  padding: 14px 16px;
}

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

@media (max-width: 1024px) {
  .container {
    width: min(var(--container), calc(100% - 80px));
  }

  .hero {
    min-height: auto;
    padding: 140px 40px 80px;
  }

  .hero.hero-contained {
    margin-top: 96px;
    width: calc(100% - 64px);
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 0;
  }

  .about-section {
    padding: 80px 40px;
  }

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

  .about-copy {
    padding-right: 0;
  }

  .about-portrait-wrap {
    justify-content: flex-start;
    padding: 0;
  }

  .about-portrait {
    margin-bottom: 0;
    padding-top: 0;
  }

  .stats-section {
    padding: 80px 0;
  }

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

  .awards-section {
    padding: 80px 20px;
  }

  .section-head,
  .section-head.is-centered {
    text-align: center;
  }

  .section-head .section-divider,
  .section-head.is-centered .section-divider {
    margin: 0 auto 20px;
  }

  .section-lead {
    margin: 20px auto 0;
  }

  .areas-section {
    padding: 80px 40px;
  }

  .page-intro-section,
  .values-section,
  .team-section,
  .specialties-list-section,
  .feature-logo-section,
  .faq-section,
  .contact-combined-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-intro-grid {
    grid-template-columns: 1fr;
  }

  .page-intro-copy,
  .page-intro-media {
    padding-right: 0;
  }

  .page-intro-media {
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .values-grid,
  .team-grid,
  .specialty-grid,
  .feature-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .legal-process-shell,
  .contact-studio-shell {
    grid-template-columns: 1fr;
  }

  .contact-combined-grid {
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.76fr);
  }

  .contact-form {
    max-width: 100%;
  }

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

  .areas-media {
    grid-column: 1 / -1;
  }

  .process-section {
    padding: 80px 10px 80px;
  }

  .location-section {
    padding: 60px 25px 40px;
  }
}

@media (max-width: 921px) {
  .site-header {
    padding: 14px 0;
  }

  .header-row {
    gap: 14px;
  }

  .header-right {
    gap: 14px;
  }

  .brand-mark img {
    width: 92px;
  }

  .desktop-nav,
  .header-right .button-primary,
  .social-links {
    display: none;
  }

  .mobile-toggle {
    align-items: center;
    background: transparent;
    color: var(--color-white);
    display: inline-flex;
    justify-content: center;
    padding: 0;
  }

  .mobile-toggle svg {
    height: 24px;
    width: 24px;
  }

  .site-header.is-scrolled .mobile-toggle {
    color: var(--color-white);
  }

  .mobile-menu {
    background: rgba(17, 33, 59, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
    margin-top: 16px;
    padding: 18px 0;
  }

  .mobile-menu ul {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .mobile-menu a,
  .mobile-menu .button-primary {
    color: var(--color-white);
  }

  .mobile-menu .button-primary {
    display: inline-flex;
    justify-content: center;
    min-width: 220px;
  }
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - 50px);
  }

  .hero {
    background-position: 68% center;
    padding: 125px 25px 55px;
  }

  .hero.is-inner {
    padding: 130px 25px 70px;
  }

  .hero.hero-contained {
    margin-top: 88px;
    width: calc(100% - 32px);
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .hero-eyebrow {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 12px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.72;
    max-width: 34ch;
  }

  .about-section,
  .awards-section,
  .areas-section,
  .process-section,
  .page-intro-section,
  .values-section,
  .team-section,
  .specialties-list-section,
  .feature-logo-section,
  .faq-section,
  .contact-combined-section {
    padding-left: 25px;
    padding-right: 25px;
  }

  .about-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .stats-section {
    padding: 50px 25px;
  }

  .stats-grid,
  .awards-grid,
  .process-grid,
  .areas-grid,
  .values-grid,
  .team-grid,
  .specialty-grid,
  .feature-logo-grid,
  .legal-practice-grid,
  .contact-strip,
  .form-grid-two,
  .contact-combined-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-row {
    margin-top: 28px;
  }

  .contact-strip {
    margin-top: 16px;
  }

  .contact-strip-item.is-bordered {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .about-highlight-grid {
    grid-template-columns: 1fr;
  }

  .areas-column,
  .areas-column.offset-top {
    gap: 40px;
    margin-top: 40px;
  }

  .areas-photo {
    padding-right: 0;
  }

  .section-head h2,
  .areas-media h2,
  .cta-shell h2 {
    font-size: 22px;
  }

  .location-shell h3 {
    font-size: 18px;
  }

  .cta-section {
    padding: 50px 25px;
  }

  .legal-process-section,
  .legal-practice-section,
  .contact-studio-section {
    padding-left: 25px;
    padding-right: 25px;
  }

  .legal-process-copy h2 {
    font-size: 36px;
  }

  .contact-studio-shell {
    gap: 36px;
  }

  .contact-form {
    margin-top: 0;
    padding: 24px;
  }

  .map-frame {
    max-width: 100%;
    width: 100%;
  }

  .floating-whatsapp {
    bottom: 20px;
    height: 54px;
    right: 18px;
    width: 54px;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 540px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero {
    background-position: 73% center;
    min-height: 650px;
    padding: 118px 16px 44px;
  }

  .hero.is-inner {
    min-height: auto;
    padding: 118px 16px 56px;
  }

  .hero.hero-contained {
    border-radius: 10px;
    margin-top: 82px;
    width: calc(100% - 20px);
  }

  .hero-title {
    font-size: 28px;
  }

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

  .about-section,
  .awards-section,
  .areas-section,
  .process-section,
  .page-intro-section,
  .values-section,
  .team-section,
  .specialties-list-section,
  .feature-logo-section,
  .faq-section,
  .contact-combined-section,
  .legal-process-section,
  .legal-practice-section,
  .contact-studio-section,
  .cta-section,
  .stats-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-copy h2,
  .section-head h2,
  .areas-media h2,
  .cta-shell h2,
  .page-intro-copy h2 {
    font-size: 26px;
  }

  .legal-process-copy h2 {
    font-size: 32px;
  }

  .legal-process-copy p,
  .page-intro-lead,
  .section-lead,
  .contact-info-body p {
    font-size: 15px;
  }

  .legal-practice-card,
  .value-card,
  .team-card,
  .award-card,
  .process-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-studio-shell {
    gap: 30px;
  }

  .contact-form-panel,
  .contact-info-panel {
    min-width: 0;
  }

  .contact-field span,
  .contact-panel-eyebrow,
  .contact-info-body h4 {
    letter-spacing: 0.14em;
  }

  .contact-map-preview {
    min-height: 150px;
    padding: 22px 16px;
  }
}
