* {
  box-sizing: border-box;
  }

body {
margin: 0;
font-family: Arial, sans-serif;
font-size: 18px;
line-height: 1.65;
color: #233022;
background: #f8f4ee;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Georgia, "Times New Roman", serif;
line-height: 1.15;
color: #233022;
margin-top: 0;
}

h1 {
font-size: clamp(1.8rem, 2.2vw, 2.4rem);
}

h2 {
font-size: clamp(1.5rem, 1.6vw, 2rem);
}

h3 {
font-size: 1.45rem;
}

h4 {
font-size: 1.2rem;
}

a {
color: inherit;
}

/* NAVIGATION */
.hero-menu {
position: absolute;
top: 25px;
left: 50px;
right: 50px;
height: 60px;
z-index: 10;
background: transparent;
box-shadow: none;
padding: 0;
}

.page-menu + section {
margin-top: 120px;
}

.brand {
position: absolute;
top: -30px;
left: 0;
display: flex;
align-items: center;
gap: 15px;
}

.nav-logo {
width: 240px;
height: auto;
display: block;
filter: brightness(0.6) contrast(1.2);
}

.menu-links {
position: absolute;
top: 0;
right: 80px;
display: flex;
gap: 36px;
align-items: center;
flex-wrap: wrap;
}

.menu-links a {
color: #d4af37;
text-decoration: none;
font-size: 18px;
font-weight: normal;
letter-spacing: 0.02em;
transition: 0.2s;
}

.menu-links a:hover {
color: #ffffff;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #d4af37;
    cursor: pointer;
}

/* HERO */
.hero {
position: relative;
width: 100%;
height: 550px;
display: block;
overflow: hidden;
}

.hero-bg {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
opacity: 0.9;
}

.hero-overlay {
position: absolute;
top: 180px;
left: 60px;
z-index: 2;
max-width: 680px;
padding: 0;
color: #ffffff;
background: none;
border-radius: 0;
}

.hero-overlay h1 {
color: #8c6b1f;
font-size: 54px;
line-height: 1.08;
margin-bottom: 20px;
text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.35);
}

.hero-overlay p {
color: #ffffff;
font-size: 21px;
line-height: 1.5;
max-width: 620px;
margin-bottom: 30px;
text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* BUTTONS */
.cta-button,
.learn-more {
display: inline-block;
margin-top: 18px;
padding: 14px 26px;
border-radius: 6px;
background: #8c6b1f;
color: #ffffff;
text-decoration: none;
font-weight: 700;
transition: 0.2s ease;
}

.cta-button:hover,
.learn-more:hover {
background: #6e5315;
color: #ffffff;
}

.learn-more {
padding: 10px 20px;
}

/* SHARED SECTIONS */
.section-wrap {
max-width: 1180px;
margin: 0 auto;
padding: 20px 7%;
}

.highlight-section .section-wrap {
    padding-top: 10px;
}


#therapy .section-wrap {
    padding-top: 0px;
}

.section-wrap.tight-top {
    padding-top: 0;
}

.two-column {
display: grid;
grid-template-columns: 1fr 1.35fr;
gap: 56px;
align-items: start;
}

.eyebrow {
display: block;
text-align: center;
text-transform: uppercase;
letter-spacing: 0.16em;
font-family: Georgia, "Times New Roman", serif;
font-weight: 800;
font-size: 1.6rem;
color: #8c6b1f;
margin-bottom: 14px;
}

.eyebrow + p {
    margin-top: 20px;
}

#assessment .eyebrow + .card-grid + .eyebrow {
    margin-top: 40px;
}

.section-title {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
    font-size: 1.6rem;
    color: #8c6b1f;
    margin: 60px 0 30px;
}

.intro-section,
.content-section {
background: #f8f4ee;
}

.highlight-section,
.content-section.alt {
background: #f8f5ef;
padding: 60px 0 0px;
}

.page-header {
background: #f8f5ef;
padding: 120px 0 0px;
}

/* CARDS */
.highlight-card,
.info-card,
.process-card,
.rate-card,
.faq-box,
.specialty-box {
background: #ffffff;
border: 1px solid #d6c7a8;
border-radius: 22px;
padding: 34px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
margin-bottom: 28px;
}

.faq-box summary {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #233022;
    cursor: pointer;
    list-style: none;
}

.faq-box summary::after {
    content: "+";
    float: right;
    color: #8c6b1f;
    font-size: 1.5rem;
    font-weight: 700;
}

.faq-box[open] summary::after {
    content: "−";
}

/* SERVICES */
.services {
padding: 60px 7%;
background: #f8f4ee;
text-align: center;
}

.page-services {
padding-top: 0;
}

.services-grid {
max-width: 1180px;
margin: 40px auto 0;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 28px;
text-align: left;
}

.service-card {
background: #ffffff;
border: 1px solid #d6c7a8;
border-radius: 22px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.service-img {
width: 100%;
height: 245px;
object-fit: cover;
display: block;
}

.service-content {
padding: 28px;
}

.service-content h3 {
color: #8c6b1f;
}

/* GRIDS */
.card-grid.two-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    width: 100%;
}

.process-grid,
.rates-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 12px;
}

.process-card span {
font-family: Georgia, "Times New Roman", serif;
font-size: 2rem;
color: #d4af37;
font-weight: 700;
}

/* LISTS */
.specialty-box ul,
.faq-box ul {
padding-left: 24px;
}

.compact {
margin-top: 30px;
}

/* CONTACT */
.contact-section {
/*background: #3D5A3D;*/
background: #3E5038;
color: #ffffff;
text-align: center;
 width: 100%;
  margin: 0;
padding: 0;
}

.contact-section h2,
.contact-section p {
color: #ffffff;
}

.contact-section .eyebrow {
color: #d4af37;
}

.contact-section h2.consultation-title {
    color: #d4af37;
}

.note {
font-size: 0.95rem;
opacity: 0.85;
}

/* FOOTER */
footer {
text-align: center;
padding: 28px 0%;
/*background: #2F4A2F;*/
background: #2F3F2B;
color: #ffffff;
}

/* BLOCKQUOTE */
blockquote {
border-left: 4px solid #8c6b1f;
margin: 30px 0;
padding: 10px 0 10px 24px;
font-style: italic;
color: #233022;
background: #f8f5ef;
}

/* RESPONSIVE */
@media (max-width: 1050px) {
.menu-links {
right: 20px;
gap: 16px;
}


.menu-links a {
    font-size: 14px;
}

.nav-logo {
    width: 300px;
}


}

@media (max-width: 850px) {
.hero {
height: 640px;
}

.hero-menu {
    left: 24px;
    right: 24px;
    top: 25px;
    height: 60px;
}

.nav-logo {
    /*width: 260px;*/
    max-width: 100%;
    height: auto;
}

  /* TYPO + LAYOUT */
.hero-overlay {
    top: 190px;
    left: 28px;
    right: 28px;
    max-width: none;
}

.hero-overlay h1 {
    font-size: 40px;
}

.hero-overlay p {
    font-size: 18px;
}

.two-column,
.services-grid,
.card-grid.two-cards,
.process-grid,
.rates-grid {
    grid-template-columns: 1fr;
}

/*.service-content h3 {
    overflow-wrap: anywhere;
    word-break: normal;
}

.service-content h3,
.service-content h4 {
    text-align: center;
    line-height: 1.25;
}*/

.section-wrap,
.services {
    padding: 64px 5%;
}

 /* HAMBURGER */
    .hamburger {
        display: block;
        position: absolute;
        right: 16px;
        top: 10px;
        z-index: 20;

        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;

        padding: 10px 12px;
        border-radius: 8px;

        color: #d4af37;
    }

/* MENU DROPDOWN */
    .menu-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 16px;

        background: #f8f5ef;
        padding: 12px 16px;
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);

        flex-direction: column;
        gap: 12px;

        z-index: 15;

        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .menu-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

}


html, body {
    width: 100%;
    height: 100%;
}

.contact-section .section-wrap {
    padding: 80px 7%;
}

.faq-box p a {
    color: #8c6b1f;
    font-weight: 700;
    text-decoration: none;
}

.faq-box p a:hover {
    text-decoration: underline;
}

.faq-box p a::after {
    content: " ↗";
    font-size: 0.85em;
    opacity: 0.7;
}

.provider-intro {
    font-size: 0.95rem;
    line-height: 1.4;
}

.quote-attribution {
 margin-left: 40px;
    font-style: italic;
}


/* Unified paragraph styling inside all info cards */
.info-card p {
    margin: 0 0 0.5rem 0;
    line-height: 1.25;
}

/* Controlled spacing between consecutive paragraphs */
.info-card p + p {
    margin-top: 0.5rem;
}

/* Tighter spacing for lists inside info cards */
.info-card ul {
    margin: 0.4rem 0 0 0;
    padding-left: 1.2rem;
}

.info-card li {
    margin: 0.35rem 0;
    line-height: 1.25;
}

/* Tighter spacing between h4 headings and bulleted list*/
.info-card h4 {
    margin-bottom: 0.25rem;
    margin-top: 1rem;
}

.info-card h4 + ul {
    margin-top: 0;
}

.about-page .two-column > div:last-child p {
    margin: 0;
    line-height: 1.2; /* tighter inside paragraphs */
}

.about-page .two-column > div:last-child p + p {
    margin-top: 1.4rem; /* more space between paragraphs */
}

.about-page .two-column h2 {
    font-size: 1.8rem; /* increase as needed */
}

.process-card p {
    line-height: 1.3;
    margin: 0.3em 0;
}

.info-card h3 {
    text-align: center;
          margin: 0 0 0.8rem 0;
}

.faq-box p {
    line-height: 1.3;
    margin: 0.3em 0;
}

.faq-box p + p {
    margin-top: 1.2em;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 1;
}

.hero-overlay {
    z-index: 2;
}

/*MOBILE MENU*/
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 14;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

