@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
:root {
  --tm-primary: #1b263b;
  --tm-secondary: #415a77;
  --tm-accent: #ce965f;
  --tm-light: #f5f1ed;
  --tm-white: #ffffff;
  --tm-text: #333333;
  --tm-text-muted: #6c757d;
  --tm-border: #dee2e6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans Pro", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #333333;
  padding-top: 76px;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: #1b263b;
  line-height: 1.3;
}

a {
  color: #ce965f;
  transition: color 0.3s ease;
}
a:hover {
  color: #b57d3e;
}

.text-accent {
  color: #ce965f;
}

.text-justify {
  text-align: justify !important;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  max-width: 680px;
}

.text-justify {
  text-align: justify;
  overflow-wrap: break-word;
  word-wrap: break-word;
  min-width: 0;
}
.text-justify p, .text-justify li {
  max-width: 100%;
}
.text-justify h1, .text-justify h2, .text-justify h3, .text-justify h4, .text-justify h5, .text-justify h6 {
  text-align: left;
}

.footer p,
.card p,
.contact-info p,
.alert p,
.form-check-label,
.cookie-banner__text {
  max-width: none;
}

.form-check-label {
  padding-left: 0.5rem;
}

.btn {
  padding: 0.7rem 1.5rem;
  border-radius: 2px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:disabled {
  opacity: 0.5;
}
.btn:focus-visible {
  outline: 2px solid #ce965f;
  outline-offset: 2px;
}

.btn-primary {
  background-color: #ce965f;
  border-color: #ce965f;
  color: #ffffff;
  border-radius: 0;
  transition: all 0.3s ease;
  font-weight: 400;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #b57d3e;
  border-color: #b57d3e;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(206, 150, 95, 0.35);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(206, 150, 95, 0.25);
}
.btn-primary:disabled {
  background-color: #ce965f;
  border-color: #ce965f;
  color: #ffffff;
  opacity: 0.5;
}

.btn-outline-primary {
  color: #ce965f;
  border-color: #ce965f;
  border-radius: 0;
}
.btn-outline-primary:hover {
  background-color: #ce965f;
  border-color: #ce965f;
  color: #ffffff;
}

.btn-outline-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  border-radius: 0;
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.btn-dark {
  background-color: #1b263b;
  border-color: #1b263b;
  border-radius: 0;
}
.btn-dark:hover {
  background-color: #415a77;
  border-color: #415a77;
}

.btn-link {
  color: #415a77;
  text-decoration: none;
}
.btn-link:hover {
  color: #ce965f;
}

#main-nav {
  background-color: #1b263b !important;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
#main-nav.scrolled {
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
}
.navbar-brand__name {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.navbar-brand__tagline {
  font-size: 0.7rem;
  color: #ce965f;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.03em;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: #ce965f;
}

.btn--appointment {
  border-color: #ce965f;
  color: #ce965f;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.25rem;
  border-radius: 0;
  transition: all 0.3s ease;
}
.btn--appointment:hover {
  background-color: #ce965f;
  border-color: #ce965f;
  color: #ffffff;
}

.navbar .dropdown-menu {
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 0;
  min-width: 280px;
  margin-top: 0.5rem;
}
.navbar .dropdown-menu .dropdown-header {
  color: #1b263b;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1.25rem 0.25rem;
}
.navbar .dropdown-menu .dropdown-item {
  color: #333333;
  padding: 0.4rem 1.25rem 0.4rem 1.75rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.navbar .dropdown-menu .dropdown-item:hover, .navbar .dropdown-menu .dropdown-item:focus {
  background-color: #f5f1ed;
  color: #ce965f;
  padding-left: 2rem;
}
.navbar .dropdown-menu .dropdown-item.dropdown-item--all {
  color: #ce965f;
  font-weight: 600;
  padding-left: 1.25rem;
  border-top: 1px solid #dee2e6;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}
.navbar .dropdown-menu .dropdown-item.dropdown-item--all:hover {
  padding-left: 1.5rem;
}
.navbar .dropdown-menu .dropdown-divider {
  border-color: #dee2e6;
  margin: 0.35rem 0;
}

.dropdown-menu--practice-areas {
  min-width: 620px !important;
  padding: 1rem !important;
}
.dropdown-menu--practice-areas .dropdown-columns {
  display: flex;
  gap: 1rem;
}
.dropdown-menu--practice-areas .dropdown-column {
  flex: 1;
}

.mobile-nav__toggle {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 10001;
  position: relative;
}

.mobile-nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 26px;
}
.mobile-nav__hamburger span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.mobile-nav__toggle.is-open .mobile-nav__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-nav__toggle.is-open .mobile-nav__hamburger span:nth-child(2) {
  opacity: 0;
}
.mobile-nav__toggle.is-open .mobile-nav__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #1b263b;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
}

.mobile-nav__logo {
  margin-bottom: 2.5rem;
}
.mobile-nav__logo img {
  height: 45px;
  width: auto;
}

.mobile-nav__links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  width: 100%;
}

.mobile-nav__link {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.8rem 1rem;
  min-height: 48px;
  transition: color 0.2s ease;
}
.mobile-nav__link:hover, .mobile-nav__link.active {
  color: #ce965f;
}

.mobile-nav__cta {
  display: inline-block;
  background: #ce965f;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.9rem 3rem;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
  margin-bottom: 2rem;
}
.mobile-nav__cta:hover {
  opacity: 0.85;
  color: #ffffff;
}

.mobile-nav__lang {
  display: flex;
  gap: 0.75rem;
}

.mobile-nav__lang-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  transition: color 0.2s ease;
}
.mobile-nav__lang-link:hover {
  color: #ffffff;
}
.mobile-nav__lang-link--active {
  color: #ce965f;
}

@media (min-width: 1200px) {
  .mobile-nav,
  .mobile-nav__toggle {
    display: none !important;
  }
}
.navbar .lang-switcher .lang-switcher__toggle {
  width: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.25s ease;
}
.navbar .lang-switcher .lang-switcher__toggle::after {
  margin-left: 0.2rem;
  vertical-align: 0.1em;
}
.navbar .lang-switcher .lang-switcher__toggle:hover, .navbar .lang-switcher .lang-switcher__toggle:focus, .navbar .lang-switcher .lang-switcher__toggle[aria-expanded=true] {
  border-color: rgba(206, 150, 95, 0.8);
  color: #ce965f;
  background-color: rgba(255, 255, 255, 0.06);
}
.navbar .lang-switcher .lang-switcher__menu {
  min-width: 70px;
  padding: 0.5rem;
}
.navbar .lang-switcher .lang-switcher__menu .dropdown-item {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 0.45rem 0.6rem;
  margin-bottom: 0.2rem;
}
.navbar .lang-switcher .lang-switcher__menu .dropdown-item:hover, .navbar .lang-switcher .lang-switcher__menu .dropdown-item:focus {
  padding-left: 0.6rem;
}
.navbar .lang-switcher .lang-switcher__menu .dropdown-item.active, .navbar .lang-switcher .lang-switcher__menu .dropdown-item:active {
  background-color: rgba(206, 150, 95, 0.18);
  color: #ce965f;
}
.navbar .lang-switcher .lang-switcher__menu li:last-child .dropdown-item {
  margin-bottom: 0;
}

.hero {
  background: linear-gradient(135deg, #1b263b 0%, #08111b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding-top: 110px;
  margin-top: -20px;
  padding-bottom: 100px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(206, 150, 95, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
}
.hero__badge {
  display: inline-block;
  background: rgba(206, 150, 95, 0.15);
  color: #ce965f;
  padding: 0.4rem 1rem;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(206, 150, 95, 0.3);
}
.hero__title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
  max-width: 600px;
}
.hero__title span {
  color: #ce965f;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
  font-weight: 200;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}
.hero__stat-number {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #ce965f;
  display: block;
}
.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero__image-col {
  position: relative;
}
@media (min-width: 992px) {
  .hero__image-col {
    padding-right: 0 !important;
    margin-right: calc((100% - 100vw) / 2);
  }
}
.hero__image-wrapper {
  position: relative;
  display: flex;
  justify-content: end;
}
.hero__image {
  width: 100%;
  height: 100%;
  border-radius: 2px;
}
@media (min-width: 992px) {
  .hero__image {
    border-radius: 2px 0 0 2px;
    position: absolute;
    right: 0;
    max-width: 50%;
    padding: 120px 0 80px 0;
  }
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
@media (min-width: 992px) {
  .hero__image img {
    border-radius: 2px 0 0 2px;
  }
}

@media (min-width: 992px) {
  .about__image {
    border-radius: 2px 0 0 2px;
    position: absolute;
    right: 0;
    max-width: 50%;
    margin: 0;
  }
  .about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .about__image img {
    border-radius: 2px 0 0 2px;
  }
}

.hero__photo-wrap {
  position: relative;
  display: inline-block;
  margin-right: 25px;
}
@media (max-width: 991.98px) {
  .hero__photo-wrap {
    display: block;
    margin-right: 0;
    margin-top: 32px;
  }
}

.hero__corner {
  position: absolute;
  width: 110px;
  height: 110px;
  border-color: #ce965f;
  border-style: solid;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .hero__corner {
    display: none;
  }
}

.hero__corner--tr {
  top: -25px;
  right: -25px;
  border-width: 1px 1px 0 0;
}
@media (max-width: 991.98px) {
  .hero__corner--tr {
    top: 0;
    right: 0;
  }
}

.hero__corner--bl {
  bottom: -25px;
  left: -25px;
  border-width: 0 0 1px 1px;
}
@media (max-width: 991.98px) {
  .hero__corner--bl {
    bottom: 0;
    left: 0;
  }
}

.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section.about-section {
    padding: 20px 0 !important;
  }
}
.section--light {
  background-color: #f5f1ed;
}
.section--dark {
  background-color: #1b263b;
  color: #ffffff;
}
.section--dark h2, .section--dark h3 {
  color: #ffffff;
}
.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.section--intro {
  background-color: #f5f1ed;
}
.section--cta {
  position: relative;
  color: #ffffff;
  padding: 8rem 0;
  overflow: hidden;
  background-size: cover;
  background: url("../images/landing/bg-1.jpg") no-repeat center;
}
.section--cta.bg-1 {
  background: url("../images/landing/bg-1.jpg");
}
.section--cta.bg-2 {
  background: url("../images/areas/bg-2.jpg");
}
.section--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 10, 10, 0.7);
  z-index: 1;
}
.section--cta > * {
  position: relative;
  z-index: 2;
}
.section--cta .section__title {
  color: #ffffff;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}
.section--cta .section__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
}
.section__label {
  display: inline-block;
  color: #ce965f;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}
.section__title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section__subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 200;
}

.legal-page p {
  margin-bottom: 2rem;
}

.card {
  border-color: #dee2e6;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card--expertise {
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}
.card--expertise:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.card--expertise .card-body {
  padding: 2rem 1.75rem;
}
@media (max-width: 767.98px) {
  .card--expertise .card-body {
    padding: 1.25rem;
  }
}
.card--expertise__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ce965f, #e0b68a);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #ffffff;
  font-size: 1.5rem;
}
.card--expertise__title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1b263b;
}
.card--expertise__text {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 400;
}
.card--expertise__items {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.card--expertise__items li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  font-weight: 400;
  color: #6c757d;
}
.card--expertise__items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ce965f;
}
.card--expertise__link {
  color: #ce965f;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  transition: gap 0.3s ease;
}
.card--expertise__link:hover {
  gap: 0.75rem;
  color: #b57d3e;
}

.card--area {
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  overflow: hidden;
}
.card--area:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.card--area .card-body {
  padding: 1.75rem;
}
@media (max-width: 767.98px) {
  .card--area .card-body {
    padding: 1.25rem;
  }
}
.card--area .card__title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1b263b;
  margin-bottom: 0.75rem;
}
.card--area .card__text {
  font-size: 0.9rem;
  line-height: 1.6;
}
.card--area .card__list {
  padding-left: 0;
  list-style: none;
}
.card--area .card__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  color: #6c757d;
}
.card--area .card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ce965f;
}
.card--area .card__list-item {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  color: #6c757d;
}
.card--area .card__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ce965f;
}

.specialization-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 1.75rem;
  transition: all 0.3s ease;
  height: 100%;
}
@media (max-width: 767.98px) {
  .specialization-card {
    padding: 1.25rem;
  }
}
.specialization-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(206, 150, 95, 0.3);
  transform: translateY(-4px);
}
.specialization-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(206, 150, 95, 0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #ce965f;
  font-size: 1.25rem;
}
.specialization-card__title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.specialization-card__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.feature {
  padding: 2rem 1.6rem;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}
@media (max-width: 767.98px) {
  .feature {
    padding: 1.25rem;
  }
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.feature__icon {
  color: #ce965f;
}
.feature__title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: #1b263b;
  font-weight: 600;
}

.roadmap {
  counter-reset: roadmap-counter;
}

.roadmap__item {
  position: relative;
  padding-left: 5rem;
  padding-bottom: 3rem;
  counter-increment: roadmap-counter;
}
.roadmap__item:last-child {
  padding-bottom: 0;
}
.roadmap__item::before {
  content: counter(roadmap-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ce965f, #e0b68a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  z-index: 1;
}
.roadmap__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  width: 2px;
  height: calc(100% - 56px);
  background: linear-gradient(to bottom, #ce965f, #ce965f);
}

.roadmap__title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1b263b;
  margin-bottom: 0.5rem;
}

.roadmap__text {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 400px;
}

.contact-form .form-control,
.contact-form .form-select {
  border-color: #dee2e6;
  border-radius: 0;
  padding: 0.75rem 1rem;
  min-height: 48px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #ce965f;
  box-shadow: 0 0 0 0.2rem rgba(206, 150, 95, 0.25);
}
.contact-form .form-label {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.contact-form .form-check-input {
  border-color: #dee2e6;
  border-radius: 0;
  width: 1.15em;
  height: 1.15em;
  margin-top: 0.2em;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form .form-check-input:checked {
  background-color: #ce965f;
  border-color: #ce965f;
}
.contact-form .form-check-input:focus {
  border-color: #ce965f;
  box-shadow: 0 0 0 0.2rem rgba(206, 150, 95, 0.25);
}

.contact-info__label {
  color: #1b263b;
  font-weight: 600;
}

.footer {
  background-color: #1b263b !important;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 80px;
  padding-bottom: 20px;
}
.footer__brand {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}
.footer__tagline {
  color: #ce965f;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer__description {
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6) !important;
}
.footer__heading {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__nav a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.35rem 0;
}
.footer__nav a:hover {
  color: #ce965f;
  padding-left: 0.25rem;
}
.footer__hours {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 1rem;
}
.footer__copyright {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 1rem;
}
.footer__lang-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 0.6rem;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
.footer__lang-link:hover, .footer__lang-link--active {
  color: #ce965f;
}
.footer__lang-link--active {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.1rem;
}
.footer__social-link:hover {
  background: #ce965f;
  color: #ffffff;
}
.footer__social-link.dark {
  background: rgb(27, 38, 59);
  color: #ffffff;
}
.footer__social-link.dark:hover {
  background: #ce965f !important;
  color: #ffffff !important;
}

.page-header {
  background: #1b263b;
  color: #ffffff;
  padding: 84px 0;
}
.page-header__title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.page-header__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
}

.breadcrumb--light .breadcrumb-item a {
  color: #ce965f;
  text-decoration: none;
}
.breadcrumb--light .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb--light .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.about__photo-placeholder {
  border-radius: 0;
  overflow: hidden;
  border: 3px solid #f5f1ed;
}

.about__list-item {
  position: relative;
  padding-left: 1.25rem;
}
.about__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ce965f;
}

#tm-map {
  width: 100%;
  height: 480px;
  border-radius: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  #tm-map {
    height: 320px;
  }
}
@media (max-width: 480px) {
  #tm-map {
    height: 280px;
  }
}

.leaflet-popup-content-wrapper {
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.leaflet-popup-content {
  margin: 0 !important;
  width: auto !important;
  min-width: 260px;
}
@media (max-width: 380px) {
  .leaflet-popup-content {
    min-width: 220px;
  }
}

.leaflet-popup-tip-container {
  display: none !important;
}

.leaflet-control-attribution {
  font-size: 10px !important;
  opacity: 0.6;
}

.frame__image {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 600px;
  margin-left: auto;
}
.frame__image::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border: 2px solid #ce965f;
  z-index: 0;
}
.frame__image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  border-radius: 2px;
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border: none;
  background-color: #b57d3e;
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
  z-index: 1000;
}
.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  background-color: #ce965f;
}

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

.practice-area__item {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-bottom: 1px solid #dee2e6;
}
.practice-area__item:last-child {
  border-bottom: none;
}
.practice-area__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ce965f;
}

@media (max-width: 1280px) {
  .frame__image {
    max-width: 100%;
    height: 500px;
  }
}
@media (max-width: 1199.98px) {
  #main-nav .navbar-collapse {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .hero__image-col {
    margin-top: 3rem;
  }
  .hero__image {
    height: 400px;
  }
  .dropdown-menu--practice-areas {
    min-width: 100% !important;
  }
  .dropdown-menu--practice-areas .dropdown-columns {
    flex-direction: column;
    gap: 0;
  }
  .frame__image {
    max-width: 100%;
    height: 450px;
    margin-left: 0;
    margin-top: 2rem;
  }
  .frame__image::before {
    top: -0.75rem;
    left: -0.75rem;
  }
}
@media (max-width: 767.98px) {
  body {
    padding-top: 66px;
    font-size: 1rem;
  }
  .hero {
    min-height: auto;
    padding: 6rem 0 1rem 0;
    background: #1b263b;
  }
  .hero::before {
    content: none;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .section--cta .btn,
  .hero__actions .btn {
    width: 100%;
    max-width: 100%;
  }
  .hero__image {
    height: 300px;
  }
  .hero__stats {
    gap: 1.5rem;
  }
  .section {
    padding: 48px 0;
  }
  .section--cta {
    padding: 4rem 0;
  }
  .page-header {
    padding: 48px 0 36px;
  }
  .footer {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .footer__lang-switcher {
    margin-top: 1rem;
  }
  .roadmap__item {
    padding-left: 4rem;
  }
  .roadmap__item::before {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .roadmap__item:not(:last-child)::after {
    left: 21px;
    top: 44px;
    height: calc(100% - 44px);
  }
  .btn {
    padding: 0.75rem 1.25rem;
  }
  .btn-lg {
    width: 100%;
    max-width: 400px;
  }
  .card .card-body {
    padding: 1.25rem;
  }
  .frame__image {
    height: 350px;
  }
  .frame__image::before {
    display: none;
  }
  .feature__icon .bi {
    font-size: 2rem !important;
  }
}
@media (max-width: 480px) {
  .hero__image {
    height: 240px;
  }
  .hero__stats {
    flex-direction: column;
    gap: 1rem;
  }
  .frame__image {
    height: 280px;
  }
  .specialization-card {
    padding: 1rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
.animate-fade-in:nth-child(2) {
  animation-delay: 0.1s;
}
.animate-fade-in:nth-child(3) {
  animation-delay: 0.2s;
}
.animate-fade-in:nth-child(4) {
  animation-delay: 0.3s;
}
.animate-fade-in:nth-child(5) {
  animation-delay: 0.4s;
}
.animate-fade-in:nth-child(6) {
  animation-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-fade-in {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .animate-fade-in {
    opacity: 1;
    animation: none;
  }
  .card--expertise:hover,
  .specialization-card:hover,
  .feature:hover,
  .card--area:hover {
    transform: none;
  }
}

/*# sourceMappingURL=style.css.map */

/* Fix 1: li wrapper for dropdown-columns div (HTML validation) */
.dropdown-menu__item--columns {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Fix 2: Cookie banner styles (moved from partial to head-loaded stylesheet) */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1b263b;
    border-top: 2px solid #ce965f;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    font-family: 'Source Sans Pro', 'Segoe UI', system-ui, -apple-system, sans-serif;
}
.cookie-banner__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner__text {
    flex: 1;
    min-width: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.cookie-banner__text a {
    color: #ce965f;
    text-decoration: none;
    font-weight: 600;
}
.cookie-banner__text a:hover {
    text-decoration: underline;
}
.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-banner__btn {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    min-height: 48px;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s ease;
}
.cookie-banner__btn:hover {
    opacity: 0.85;
}
.cookie-banner__btn--accept {
    background: #ce965f;
    color: #ffffff;
}
.cookie-banner__btn--decline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.cookie-banner__btn--decline:hover {
    border-color: #ffffff;
}
@media (max-width: 576px) {
    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 0 16px;
    }
    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner__btn {
        flex: 1;
        min-width: 0;
    }
}
