@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #1c2733;
  background: #ffffff;
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: #14253c;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

a {
  color: #1f5b8e;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

img {
  max-width: 100%;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: #c9a14a;
  color: #0d1a2b;
  box-shadow: 0 6px 18px rgba(201, 161, 74, 0.35);
}

.btn-primary:hover {
  background: #d3ad60;
}

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 26, 43, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  color: #fff;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}

.site-nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
  align-items: center;
}

.site-nav a {
  color: #d8e0ea;
  font-size: 15px;
  font-weight: 500;
}

.site-nav a:hover {
  color: #fff;
  text-decoration: none;
}

.site-nav .nav-cta {
  border: 1px solid rgba(201, 161, 74, 0.6);
  color: #c9a14a;
  padding: 7px 16px;
  border-radius: 6px;
}

.site-nav .nav-cta:hover {
  background: #c9a14a;
  color: #0d1a2b;
}

.header-contact {
  margin-left: 8px;
}

.header-phone {
  color: #c9a14a;
  font-weight: 700;
  font-size: 17px;
  white-space: nowrap;
}

.nav-toggle, .nav-toggle-label {
  display: none;
}

.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, #0d1a2b 0%, #14253c 55%, #1f5b8e 130%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 80% -10%, rgba(201, 161, 74, 0.18), transparent 60%), radial-gradient(700px 600px at 0% 120%, rgba(31, 91, 142, 0.35), transparent 60%);
}

.hero-inner {
  position: relative;
  padding: 96px 22px 104px;
  max-width: 860px;
}

.hero-eyebrow {
  color: #c9a14a;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 14px;
}

.hero-title {
  color: #fff;
  font-size: clamp(30px, 5vw, 50px);
  margin: 0 0 18px;
}

.hero-lead {
  color: #d6dfea;
  font-size: 19px;
  max-width: 720px;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.section {
  padding: 78px 0;
}

.section-alt {
  background: #f5f7fa;
}

.section-head {
  max-width: 760px;
  margin: 0 0 42px;
}

.section-kicker {
  display: inline-block;
  color: #1f5b8e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
}

.section-intro {
  color: #5a6675;
  font-size: 18px;
}

.prose {
  max-width: 820px;
}

.prose p {
  margin: 0 0 18px;
  color: #2b3d50;
}

.prose blockquote {
  margin: 26px 0;
  padding: 18px 24px;
  border-left: 4px solid #c9a14a;
  background: #fff;
  font-style: italic;
  color: #14253c;
  box-shadow: 0 4px 18px rgba(20, 37, 60, 0.06);
}

.section-alt .prose blockquote {
  background: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid #e4e8ee;
  border-radius: 10px;
  padding: 28px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(20, 37, 60, 0.1);
}

.card h3 {
  font-size: 21px;
}

.card h3::before {
  content: "⚖";
  color: #c9a14a;
  margin-right: 8px;
}

.card p {
  color: #5a6675;
  margin: 0;
  font-size: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.credentials li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px dashed #e4e8ee;
  color: #1c2733;
}

.credentials li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c9a14a;
  font-weight: 700;
}

.faq {
  max-width: 880px;
}

.faq details {
  background: #fff;
  border: 1px solid #e4e8ee;
  border-radius: 10px;
  margin-bottom: 14px;
  padding: 0 22px;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 30px 18px 0;
  font-weight: 600;
  color: #14253c;
  position: relative;
  font-size: 17px;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 24px;
  color: #c9a14a;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 0 18px;
  color: #5a6675;
}

.faq-body p {
  margin: 0 0 14px;
}

.faq-body blockquote {
  margin: 0 0 14px;
  padding: 14px 18px;
  background: #f5f7fa;
  border-left: 3px solid #1f5b8e;
  border-radius: 4px;
  font-size: 15px;
  color: #1c2733;
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.team-member {
  background: #fff;
  border: 1px solid #e4e8ee;
  border-radius: 10px;
  padding: 28px 26px;
  box-shadow: 0 6px 20px rgba(20, 37, 60, 0.05);
}

.team-member h3 {
  font-size: 21px;
}

.team-member h3::before {
  content: "⚖";
  color: #c9a14a;
  margin-right: 8px;
}

.team-member p {
  color: #5a6675;
  font-size: 16px;
}

.team-member p:last-child {
  margin-bottom: 0;
}

.callout {
  margin: 38px 0;
  padding: 28px 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0d1a2b, #14253c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 12px 32px rgba(13, 26, 43, 0.2);
}

.callout p {
  margin: 0;
  font-size: 19px;
}

.callout strong {
  color: #c9a14a;
}

.contact-note {
  color: #cfd9e6;
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 16px;
}

.prose h3 {
  font-size: 23px;
  margin: 32px 0 12px;
}

.prose .credentials {
  margin: 0 0 18px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  margin: 0;
  background: #fff;
  border: 1px solid #e4e8ee;
  border-radius: 10px;
  padding: 28px 26px;
  box-shadow: 0 6px 20px rgba(20, 37, 60, 0.05);
}

.testimonial blockquote {
  margin: 0 0 16px;
  padding: 0;
  color: #1c2733;
  font-style: italic;
  position: relative;
}

.testimonial blockquote::before {
  content: "“";
  font-family: "Playfair Display", serif;
  font-size: 54px;
  color: #c9a14a;
  line-height: 0;
  vertical-align: -18px;
  margin-right: 6px;
}

.testimonial figcaption {
  font-weight: 700;
  color: #14253c;
}

.testimonial figcaption span {
  font-weight: 400;
  color: #5a6675;
}

.contact-section {
  background: #f5f7fa;
}

.contact-card {
  background: linear-gradient(135deg, #0d1a2b, #14253c);
  color: #fff;
  border-radius: 16px;
  padding: 52px 44px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(13, 26, 43, 0.25);
}

.contact-card h2 {
  color: #fff;
  font-size: clamp(24px, 3.4vw, 34px);
}

.contact-lead {
  color: #cfd9e6;
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 18px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 18px 26px;
  min-width: 220px;
}

.contact-label {
  display: block;
  color: #c9a14a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.contact-value {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
}

a.contact-value:hover {
  color: #c9a14a;
  text-decoration: none;
}

.contact-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-map {
  margin-top: 32px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e4e8ee;
  box-shadow: 0 10px 30px rgba(20, 37, 60, 0.1);
  line-height: 0;
}

.contact-map iframe {
  display: block;
  width: 100%;
}

.site-footer {
  background: #0d1a2b;
  color: #aeb9c7;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding: 54px 22px 36px;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 14px;
}

.footer-col strong {
  display: block;
  color: #fff;
  margin: 8px 0;
  font-family: "Playfair Display", serif;
}

.footer-col p {
  margin: 6px 0;
  font-size: 15px;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-col a {
  color: #aeb9c7;
}

.footer-col a:hover {
  color: #c9a14a;
  text-decoration: none;
}

.footer-assoc {
  font-size: 14px;
}

.footer-assoc a {
  color: #c9a14a;
}

.footer-social {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #d8e0ea;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.footer-social a:hover {
  color: #0d1a2b;
  background: #c9a14a;
  border-color: #c9a14a;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  font-size: 13px;
  color: #7d8aa0;
}

.footer-bottom .container {
  text-align: center;
}

.footer-bottom a {
  color: #c9a14a;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #c9a14a;
  color: #0d1a2b;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(20, 37, 60, 0.25);
}

.back-to-top:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .header-contact {
    display: none;
  }
  .site-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: #0d1a2b;
    padding: 10px 22px 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-nav .nav-cta {
    text-align: center;
    margin-top: 10px;
  }
  .nav-toggle:checked ~ .site-nav {
    max-height: 420px;
  }
  .nav-toggle-label {
    display: block;
    margin-left: auto;
    width: 34px;
    height: 28px;
    position: relative;
    cursor: pointer;
  }
  .nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.25s;
  }
  .nav-toggle-label span {
    top: 13px;
  }
  .nav-toggle-label span::before {
    top: -9px;
  }
  .nav-toggle-label span::after {
    top: 9px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 36px 22px;
  }
}

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