:root {
    --PrimaryColor: #4f6f52;
    --SecondaryColor: #c9d6c5;
    --WhiteColor: #fff;
    --BlackColor: #000;
    --snow: #f8faf9;
    --slate: #334155;
    --amber: #d4a373;



}

html {
    font-size: 16px;
}
html,
body {
    scroll-behavior: smooth; overflow-x: hidden;
}
@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-ExtraLight.eot");
    src: url("../fonts/Inter24pt-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-ExtraLight.woff2") format("woff2"), url("../fonts/Inter24pt-ExtraLight.woff") format("woff"),
        url("../fonts/Inter24pt-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Bold.eot");
    src: url("../fonts/Inter24pt-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Bold.woff2") format("woff2"), url("../fonts/Inter24pt-Bold.woff") format("woff"), url("../fonts/Inter24pt-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Regular.eot");
    src: url("../fonts/Inter24pt-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Regular.woff2") format("woff2"), url("../fonts/Inter24pt-Regular.woff") format("woff"),
        url("../fonts/Inter24pt-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Thin.eot");
    src: url("../fonts/Inter24pt-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Thin.woff2") format("woff2"), url("../fonts/Inter24pt-Thin.woff") format("woff"), url("../fonts/Inter24pt-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Light.eot");
    src: url("../fonts/Inter24pt-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Light.woff2") format("woff2"), url("../fonts/Inter24pt-Light.woff") format("woff"),
        url("../fonts/Inter24pt-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Black.eot");
    src: url("../fonts/Inter24pt-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Black.woff2") format("woff2"), url("../fonts/Inter24pt-Black.woff") format("woff"),
        url("../fonts/Inter24pt-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-ExtraBold.eot");
    src: url("../fonts/Inter24pt-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-ExtraBold.woff2") format("woff2"), url("../fonts/Inter24pt-ExtraBold.woff") format("woff"),
        url("../fonts/Inter24pt-ExtraBold.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-SemiBold.eot");
    src: url("../fonts/Inter24pt-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-SemiBold.woff2") format("woff2"), url("../fonts/Inter24pt-SemiBold.woff") format("woff"),
        url("../fonts/Inter24pt-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Medium.eot");
    src: url("../fonts/Inter24pt-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Medium.woff2") format("woff2"), url("../fonts/Inter24pt-Medium.woff") format("woff"),
        url("../fonts/Inter24pt-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
   color: var(--slate);  font-size: 1rem;
    /* font-family: "Inter 24pt"; */
    font-family: "Inter";
    font-weight: 400;


}
.bg-snow{background: var(--snow); }
h1, h2{
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.bg-soft {
    background: #F8F8F8;
}

.btn {
    font-size: 0.9rem;     
     padding: 0.5rem 1rem; 
   border-radius: 0.75rem; 
    font-weight: 500;
    transition: all 0.2s ease;
}
.btn:hover,
.btn:focus,
.btn.active {
    outline: none !important;
    box-shadow: none !important;
}

.btn-primary {
    color: var(--WhiteColor);
    background: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
}
.btn-primary svg{
    width: 1.2rem;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
    background-color: var(--WhiteColor) !important;
    color: var(--PrimaryColor) !important;
    border-color: var(--PrimaryColor) !important;
    outline: none !important;
    box-shadow: none !important;
}


.btn-white {
    color: var(--PrimaryColor);
    background: var(--WhiteColor);
    border-color: var(--WhiteColor);
}
.btn-white svg{
    width: 1.2rem;
}

.btn-white:hover,
.btn-white:focus,
.btn-white.active {
    background-color: var(--PrimaryColor) !important;
    color: var(--WhiteColor) !important;
    border-color: var(--PrimaryColor) !important;
    outline: none !important;
    box-shadow: none !important;
}

.btn-outline-primary {
    color: var(--PrimaryColor);
    background: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.active {
     color: var(--WhiteColor) !important;
    background: var(--PrimaryColor) !important;
    border-color: var(--PrimaryColor) !important;
    outline: none !important;
    box-shadow: none !important;
}

.btn-sm{font-size:0.75rem; padding-inline: 0.75rem;}

.same-section {
    padding: 4rem 0;
}
.same-heading {margin-bottom: 3rem;}
.same-heading h2 {
  font-size: 2rem; /* 32px */
  font-weight: 700;
  color: var(--slate);
}
.same-heading h3 {
    color: var(--heading-text);
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.2; margin-bottom: 1rem;
}

.same-heading p {
  font-size: 1rem;
  color: var(--slate);
  opacity: 0.9;
}


.max-wid-50{width: 100%; max-width: 70%;}
.same-heading.text-center .max-wid-50{margin:0 auto;}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header  {padding: 0;   transition: all 0.3s ease;}
.header .top-bar { background: var(--PrimaryColor); color: var(--WhiteColor); padding: 0.5rem 0; }
.header .top-bar .contact-links { display: flex; align-items: center; gap: 1rem; }
.header .top-bar .contact-link { color: var(--WhiteColor); text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.875rem; /* 14px */ transition: opacity 0.3s ease; }
.header .top-bar .contact-link svg{width: 1rem;}
.header .top-bar .contact-link:hover { opacity: 0.85; }
.header .top-bar .tagline { font-size: 0.75rem; /* 14px */ opacity: 0.85; }

.header .header-nav{padding: 1rem  0; border-bottom: solid 1px #C9D6C5;}
.header .navbar{padding: 0; justify-content: space-between;}
/* Brand */
.header .header-nav .brand-mark { width: 2.25rem; height: 2.25rem; background: var(--PrimaryColor); border-radius: 0.75rem; place-items: center; }
.header .header-nav .brand-mark svg{ width: 1.125rem; height: 1.125rem; color: var(--WhiteColor); }
.header .header-nav .brand-name { font-size: 1.25rem; font-weight: 700; color: var(--slate); }


.header .navbar .nav a:not(.btn-primary){ font-size: 0.9rem; /* 16px */ color: var(--slate); font-weight: 400; }
.header .navbar .nav a:not(.btn-primary):hover{color: var(--PrimaryColor);}
.header .navbar-brand {padding: 0;}
.header.headerFix { position: fixed; top: 0; left: 0; width: 100%; background: var(--WhiteColor); box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08); z-index: 99;animation:headerfixdown 0.7s; } 
.header.headerFix .header-nav{padding: 0.5rem 0;} 
.header .navbar .nav .btn-primary svg{width: 16px;}


@keyframes headerfixdown {
    0% {
    opacity: 0;
    transform: translateY(-100%);
} 
100% {
    opacity: 0.9;
    transform: translateY(0);
    } 
}

.mobile-menu-toggle { background: var(--PrimaryColor); color: var(--WhiteColor); width: 2rem; height: 2rem; padding: 0.2rem; border-radius: 50%; line-height: 0; border: solid 1px var(--PrimaryColor); font-size: 1rem; cursor: pointer;  display: none;}
.mobile-menu-toggle svg{width: 1rem; color: var(--WhiteColor);}
.body-overlay{ position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1050; display: none;}

.hero-section {padding: 6rem 0 0;}
.hero-section .hero-content{width: 100%; max-width: 42rem; }
.hero-section h1{font-size: 3.75rem; color: #334155; font-weight: 800; line-height: 1.1;}
.hero-section p{font-size:1.125rem; color: #334155; margin: 1.3rem 0 2rem; font-weight: 400;}
.hero-section .hero-buttons {display: flex; align-items: center; gap: 1rem;  flex-wrap: wrap;}
.hero-section .hero-divider{width: 100%; height: 160px; }



/* =========================
   Practice Areas
========================= */

.practice-section .practice-card { border: 1px solid var(--SecondaryColor); padding: 1.5rem; border-radius: 1rem; background: var(--WhiteColor); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); }
.practice-section .practice-card .icon-chip { width: 2.25rem; height: 2.25rem; background: #E8EFE7; color: var(--PrimaryColor); display: grid; place-items: center; border-radius: 0.5rem; }
.practice-section .practice-card h3 {font-size: 1.1rem; font-weight: 500; margin: 0.75rem 0 0.25rem; min-height: 3rem; }
.practice-section .practice-card p { font-size: 0.9rem; line-height: 1.6; color: var(--slate); }
.practice-section .practice-card a { color: #4F6F52; font-size: 0.9rem; }
.practice-section .practice-card a svg{width: 16px;}



/* Why Moss Section */
.why-moss-section { position: relative; }
.why-moss-section .why-moss-card { border: 1px solid #C9D6C5; background-color: white; border-radius: 0.75rem; padding: 1.5rem; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); transition: box-shadow 0.3s ease; }
.why-moss-section .why-moss-card:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.why-moss-section  .why-moss-card h3 { font-size: 1.1rem; /* 20px */ font-weight: 600; margin-bottom: 0.5rem; }
.why-moss-section  .why-moss-card p { font-size:  0.9rem; line-height: 1.6; color: var(--slate); }



/* =========================
   Attorneys
========================= */
.attorneys-section .attorney-card { border: 1px solid var(--SecondaryColor); border-radius: 1rem; overflow: hidden; background: var(--WhiteColor); transition: box-shadow 0.25s ease; } 
.attorneys-section .attorney-card:hover { box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); }
.attorneys-section .attorney-card .attorney-img img{ width: 100%; height: 17rem; object-fit: cover; } 

.attorneys-section .attorney-card .attorney-info { padding: 1rem; } 
.attorneys-section .attorney-card .attorney-name { font-size: 1.1rem;color: #0f172a; font-weight: 700; } 
.attorneys-section .attorney-card .attorney-role { font-size: 0.9rem; color: #0f172a; }
.attorneys-section .attorney-card .attorney-blurb { font-size: 0.9rem; line-height: 1.6; color: var(--slate); }
.attorneys-section .attorney-card :is(.award-badge,.status-badge ){ font-size: 0.75rem; background: rgba(212, 163, 115, 0.1); color: var(--amber); padding: 0.3rem 0.6rem; border-radius: 50px; }
.attorneys-section .attorney-card .awards-list{display: flex; flex-wrap: wrap; gap: 0.2rem; margin: 1rem 0;}
.attorneys-section .attorney-card .attorney-actions{display: flex; align-items: center; gap: 0.5rem;}


.results-section .result-card { border: 1px solid var(--SecondaryColor); border-radius: 1rem; background: var(--WhiteColor); padding: 1.5rem; }
.results-section .result-card h3 { font-size: 1.1rem; color: #334155; font-weight: 600;  min-height: 2.6rem;}
.results-section .result-card .result-region { font-size: 0.7rem;color: #334155; text-transform: uppercase; opacity: 0.7; margin: 0.25rem 0 0.75rem; }
.results-section .result-card .result-summary { font-size: 0.9rem; line-height: 1.6; color: var(--slate);} 



.insights-section .insight-card { border: 1px solid var(--SecondaryColor); border-radius: 1rem; padding: 1.5rem; background: var(--WhiteColor); }
.insights-section .insight-card h3{line-height: 1;} 
.insights-section .insight-card h3 a{ font-size: 1.1rem; color: #334155; font-weight: 600; line-height: normal;} 
.insights-section .insight-card .insight-date {font-size: 0.7rem;color: #334155; opacity: 0.7; margin: 0.25rem 0 0.75rem;}
.insights-section .insight-card .tag-badge { font-size: 0.75rem; background: rgba(212, 163, 115, 0.1); color: var(--amber); padding: 0.3rem 0.6rem; border-radius: 50px; } 




.dual-intake-section .same-heading { border: 1px solid #C9D6C5; border-radius: 1.5rem; background: linear-gradient(to bottom right, #E8EFE7, #ffffff); padding: 2rem; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
.dual-intake-section .same-heading h2{ font-size: 1.75rem; margin-bottom: 0.5rem;}
.dual-intake-section .same-heading p{ max-width: 600px; margin: 0; }




/* ========================= Contact ========================= */

.contact-section .contact-form .form-label { font-size: 0.9rem; font-weight: 500;color: #334155; }
.contact-section .contact-form .form-control, .contact-form .form-select {color: #334155; font-size: 0.9rem; border-radius: 0.5rem; border: 1px solid #C9D6C5; padding: 0.5rem 0.75rem; } 
.contact-section .contact-form .form-control::placeholder{color: #334155; opacity: 0.6;}
.contact-section .contact-form .form-control:focus, .contact-form .form-select:focus { outline: none; border-color: var(--PrimaryColor); box-shadow: 0 0 0 2px rgba(79, 111, 82, 0.2); }


/* Consent Checkbox */
.contact-section .contact-form .form-check-label { font-size: 0.9rem; font-weight: 500;color: #334155;  } 
.contact-section .accessibility-note{margin-top: 1rem;}
.contact-section .accessibility-note p { font-size: 0.8rem; color:#334155; opacity: 0.8; } 
.contact-section .contact-form .form-check-input:checked { background-color: var(--PrimaryColor); border-color: var(--PrimaryColor); }


/* Office Info */
.contact-section .office-info { background: var(--snow); border: 1px solid #C9D6C5; border-radius: 1rem; padding: 1.5rem; }
.contact-section .office-info h3 { font-size: 1.25rem; font-weight: 600; color: var(--slate); line-height: normal; } 
.contact-section .office-info .office-details p { font-size: 0.95rem; margin-bottom: 0.75rem; color: var(--slate); }
.contact-section .office-info .icon { color: var(--PrimaryColor); width: 1rem; height: 1rem; } 
.contact-section .office-info p.timemt{font-size: 0.8rem; opacity: 0.8;}


/* Accordion Styling */
.contact-section .faq-accordion .accordion-item {background: transparent; border: 0; border-radius: 0; border-bottom: 1px solid #C9D6C5;  }
.contact-section .faq-accordion .accordion-button { font-size: 0.9rem; font-weight: 500; color: #334155; box-shadow: none; background: transparent; padding-left:0 ; }
.contact-section .faq-accordion .accordion-button::after{background-size: 16px;}
.contact-section .faq-accordion .accordion-body { font-size: 0.85rem; padding-left: 0; color: var(--slate); }


/* =========================
   Footer
========================= */
.site-footer { background: #0f1a12; color: var(--SecondaryColor); padding: 3rem 0; } 
.site-footer .footer-logo{width: 2.2rem; height: 2.2rem; background: #4F6F52; border-radius: 0.75rem;}
.site-footer h4 { font-size: 1rem; font-weight: 600; color: var(--WhiteColor); } 
.site-footer .footer-links a { font-size: 0.9rem; color: var(--SecondaryColor); text-decoration: none; display: block; padding: 0.2rem 0; }
.site-footer .footer-links a:hover { text-decoration: underline; color: var(--WhiteColor); }
.site-footer p.small {font-size: 0.8rem; opacity: 0.7; color: var(--WhiteColor);}
.site-footer p.small a{text-decoration: underline;color: var(--WhiteColor);}

