:root {
    --deep-burgundy: #2a1316;
    --ink: #152238;
    --teal: #1f6f78;
    --gold: #d8b26e;
    --cloud: #f7f7f9;
    --text-primary: #222;
    --text-secondary: #5a6470;
    --white: #ffffff;
    font-size: 16px;
}

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

body {
    margin: 0;
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    color: var(--text-primary);
    background-color: var(--cloud);
    line-height: 1.6;
}

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

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

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 2rem 6vw;
    background-color: var(--white);
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.site-title {
    margin: 0;
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #4a4a4a;
    flex: 1;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 30;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #4a4a4a;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.site-title a {
    color: inherit;
    text-decoration: none;
}

.header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 1rem;
    gap: 1rem;
}

.header-line::before,
.header-line::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #d0d0d0;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-weight: 400;
    font-size: 0.9rem;
    color: #a0a0a0;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: #6a6a6a;
}

.nav-links a.active {
    color: #4a4a4a;
}

.nav-links a[data-page="blog"] {
    display: none;
}

.hero {
    position: relative;
    height: clamp(24rem, 55vw, 30rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6vw;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("images/686098162.jpg");
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    transform: scale(1.05);
    z-index: 0;
}

.hero.secondary-hero {
    height: clamp(18rem, 45vw, 22rem);
    background: none;
    padding: 0;
}

.hero.secondary-hero::before {
    display: none;
}

.hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 700px;
    text-align: center;
    z-index: 2;
}

.hero-eyebrow {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0 0 1rem;
    color: var(--white);
}

.hero-title {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    margin: 0 0 2rem;
    color: var(--white);
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.5rem;
    border-radius: 0;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-primary {
    background-color: #1f6f78;
    color: var(--white);
}

.btn-secondary {
    background-color: #1f6f78;
    color: var(--white);
}

.intro {
    padding: 0;
    background-color: var(--white);
}

.intro-card {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    background-color: var(--white);
    color: var(--white);
    overflow: hidden;
    min-height: 400px;
}

.intro-image {
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 2rem;
}

.intro-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.intro-content {
    padding: clamp(3rem, 6vw, 4.5rem) clamp(3rem, 6vw, 4rem);
    background-color: #000000;
    text-align: left;
}

.intro-content h2 {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: var(--white);
}

.intro-subtitle {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 1.5rem;
}

.intro-content p {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.6;
    color: var(--white);
    margin: 0;
}

.services-showcase {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 6vw;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-showcase-background {
    position: absolute;
    inset: 0;
    background-image: url('images/996325489.jpg');
    background-size: 100% 100%;
    background-position: center;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: 0;
}

.services-showcase-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.services-showcase-content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    z-index: 2;
    text-align: center;
}

.services-showcase-content h3 {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    margin: 0 0 1.5rem;
}

.services-showcase-divider {
    width: 100%;
    max-width: 800px;
    height: 1px;
    background-color: var(--white);
    margin: 0 auto clamp(3rem, 6vw, 4rem);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 5vw, 3rem);
    align-items: start;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) saturate(0.7);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
    filter: brightness(0.9) saturate(0.8);
}

.service-card h4 {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4a9eff;
    margin: 0 0 1rem;
}

.service-card p {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.6;
    color: var(--white);
    margin: 0;
}

.secondary-hero .secondary-image {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1487412912498-0447578fcca8?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
}

.partners {
    padding: clamp(1rem, 3vw, 2rem) 6vw 4rem;
    text-align: center;
}

.partners h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin-bottom: 2rem;
    color: var(--ink);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
}

.partner-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 14px 28px rgba(31, 111, 120, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
}

.partner-card:hover,
.partner-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(31, 111, 120, 0.18);
}

.partner-card img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    border-radius: 8px;
}

.site-footer {
    margin-top: auto;
    padding: 3rem 6vw;
    background-color: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-text {
    flex: 1;
    min-width: 200px;
}

.footer-text p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-links a i {
    display: block;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--white);
    background-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 111, 120, 0.4);
}

body[data-page="bio"] {
    background-image: url("images/White-Blossoms.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

body[data-page="bio"] .page-wrapper {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(21, 34, 56, 0.08);
}

.bio-main {
    padding: clamp(3rem, 7vw, 5rem) clamp(6vw, 10vw, 12vw) clamp(4rem, 8vw, 6rem);
    color: var(--ink);
}

.bio-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(3rem, 7vw, 4rem);
    align-items: center;
}

.bio-hero-content {
    display: flex;
    flex-direction: column;
}

.bio-hero h1 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

.bio-hero p {
    margin: 0 0 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: left;
}

.bio-hero p:last-child {
    margin-bottom: 0;
}

.bio-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio-hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    object-fit: contain;
    object-position: center;
    background-color: #e0e0e0;
    padding: 1.5rem;
    box-shadow: 0 18px 36px rgba(21, 34, 56, 0.18);
}

.bio-intro {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    box-shadow: 0 22px 48px rgba(21, 34, 56, 0.18);
    padding: clamp(2.5rem, 6vw, 3.75rem);
    margin-bottom: clamp(3rem, 7vw, 4rem);
    text-align: center;
}

.bio-intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.bio-intro h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0;
    color: var(--ink);
}

.bio-content {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    box-shadow: 0 15px 36px rgba(21, 34, 56, 0.12);
    padding: clamp(2.5rem, 6vw, 4rem);
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 5vw, 3rem);
}

.bio-section h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-bottom: 1.25rem;
    color: var(--ink);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(21, 34, 56, 0.1);
}

.bio-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.bio-section p:last-child {
    margin-bottom: 0;
}

.bio-section li {
    color: var(--text-secondary);
    line-height: 1.7;
}

.bio-section a {
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    font-weight: 500;
}

.bio-section a:hover,
.bio-section a:focus-visible {
    color: var(--ink);
    text-decoration: underline;
}

.bio-section ul {
    padding-left: 1.2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.bio-section ul li strong {
    color: var(--ink);
}

.bio-partner-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bio-partner-links li {
    color: var(--text-secondary);
    line-height: 1.6;
}

.bio-partner-links a {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bio-partner-links a:hover,
.bio-partner-links a:focus-visible {
    color: var(--ink);
    text-decoration: underline;
}

.bio-button {
    display: inline-flex;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    background-color: var(--teal);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.bio-button:hover,
.bio-button:focus-visible {
    background-color: #195b61;
    transform: translateY(-2px);
}

.bio-pubs {
    list-style: decimal;
    padding-left: 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: var(--text-secondary);
}

.bio-pubs li {
    line-height: 1.7;
    padding-left: 0.5rem;
}

.bio-pubs a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
    font-weight: 500;
}

.bio-pubs a:hover,
.bio-pubs a:focus-visible {
    color: var(--ink);
    text-decoration: underline;
}

.bio-pubs em {
    font-style: italic;
    color: var(--ink);
}

.bio-pubs strong {
    color: var(--ink);
    font-weight: 600;
}

.bio-section .footnote {
    font-size: 0.9rem;
    color: rgba(21, 34, 56, 0.6);
}

.tools-main {
    padding-bottom: clamp(3rem, 8vw, 5rem);
    background-color: var(--white);
}

.tools-hero {
    padding: clamp(3rem, 6vw, 4.5rem) clamp(6vw, 8vw, 12vw);
    text-align: center;
    color: var(--ink);
}

.tools-hero h1 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.75rem;
}

.tools-hero p {
    max-width: 620px;
    margin: 0 auto 1.5rem;
    color: var(--text-secondary);
}

.tools-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--cloud);
    padding: 2rem;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-track {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    visibility: hidden;
    z-index: 1;
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.tools-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--teal);
    color: var(--teal);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(21, 34, 56, 0.15);
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
    background-color: var(--teal);
    color: var(--white);
    box-shadow: 0 6px 16px rgba(31, 111, 120, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow--prev {
    left: -25px;
}

.slider-arrow--next {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--teal);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover,
.slider-dot:focus-visible {
    background-color: rgba(31, 111, 120, 0.3);
    transform: scale(1.2);
}

.slider-dot.active {
    background-color: var(--teal);
}

.tool-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 5vw, 3rem);
    align-items: center;
    padding: clamp(3rem, 7vw, 5rem) clamp(6vw, 9vw, 12vw);
}

.tool-section--dark {
    background: radial-gradient(circle at top left, rgba(48, 79, 102, 0.95), rgba(21, 34, 56, 0.95));
    color: var(--white);
}

.tool-section--dark .tool-content p,
.tool-section--dark .tool-content ul {
    color: rgba(255, 255, 255, 0.78);
}

/* Child Anxiety Tales Section */
.child-anxiety-tales {
    background: #1a1a1a;
    padding: clamp(3rem, 6vw, 5rem) clamp(6vw, 9vw, 12vw);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.cat-header {
    text-align: center;
    margin-bottom: 1rem;
}

.cat-header h2 {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin: 0 0 1rem;
}

.cat-header-line {
    width: 100%;
    max-width: 600px;
    height: 2px;
    background-color: var(--white);
    margin: 0 auto;
}

.cat-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.cat-left-column h3 {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin: 0 0 1rem;
}

.cat-intro-text {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--white);
    margin: 0 0 1.25rem;
}

.cat-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cat-features li {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    color: var(--white);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.cat-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--white);
    font-size: 1.2em;
}

.cat-right-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-logo-container {
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
}

.cat-logo-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

.cat-info-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cat-info-content p {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    color: var(--white);
    line-height: 1.7;
    margin: 0;
}

.cat-info-content a {
    color: #4a9eff;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cat-info-content a:hover,
.cat-info-content a:focus-visible {
    color: #6bb3ff;
    text-decoration: none;
}

.cat-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.btn-cat-learn,
.btn-cat-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-cat-learn:hover,
.btn-cat-learn:focus-visible,
.btn-cat-order:hover,
.btn-cat-order:focus-visible {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tool-section--blue {
    background: radial-gradient(circle at top right, rgba(70, 146, 197, 0.95), rgba(36, 64, 98, 0.96));
    color: var(--white);
}

.tool-section--blue .tool-content p,
.tool-section--blue .tool-content ul {
    color: rgba(255, 255, 255, 0.78);
}

/* Camp Cope-A-Lot Section */
.camp-cope-a-lot {
    background: #2e5f8f;
    padding: clamp(3rem, 6vw, 5rem) clamp(6vw, 9vw, 12vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.camp-header {
    width: 100%;
    max-width: 900px;
}

.camp-header h2 {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin: 0 0 1.5rem;
}

.camp-subtitle {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--white);
    margin: 0 0 0.75rem;
    line-height: 1.6;
}

.camp-illustration {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.camp-logo-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.camp-description {
    width: 100%;
    max-width: 900px;
    text-align: left;
}

.camp-description p {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    color: var(--white);
    line-height: 1.7;
    margin: 0;
}

.camp-description a {
    color: #6bb3ff;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.camp-description a:hover,
.camp-description a:focus-visible {
    color: #8cc5ff;
    text-decoration: none;
}

.camp-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.btn-camp-learn,
.btn-camp-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-camp-learn:hover,
.btn-camp-learn:focus-visible,
.btn-camp-order:hover,
.btn-camp-order:focus-visible {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tool-section--light {
    background-color: var(--cloud);
}

/* Coping Cat Parents Section */
.coping-cat-parents {
    background-color: var(--white);
    padding: clamp(3rem, 6vw, 5rem) clamp(6vw, 9vw, 12vw);
    display: flex;
    justify-content: center;
    align-items: center;
}

.ccp-content {
    max-width: 900px;
    width: 100%;
}

.ccp-title {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ccp-pawprints {
    font-size: 1.2em;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.ccp-description {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    color: #1a4a6b;
    line-height: 1.7;
    margin: 0 0 2.5rem;
    text-align: left;
}

.ccp-description a {
    color: var(--teal);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.ccp-description a:hover,
.ccp-description a:focus-visible {
    color: var(--ink);
    text-decoration: none;
}

.ccp-action {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-ccp-visit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    border-radius: 6px;
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: var(--teal);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(31, 111, 120, 0.3);
}

.btn-ccp-visit:hover,
.btn-ccp-visit:focus-visible {
    background-color: #195b61;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 111, 120, 0.4);
}

.tool-content h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    margin-bottom: 0.75rem;
}

.tool-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.2);
    color: inherit;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
}

.tool-content ul {
    padding-left: 1.1rem;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: var(--text-secondary);
}

.tool-content p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.tool-content a {
    color: var(--teal);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.tool-content a:hover,
.tool-content a:focus-visible {
    color: var(--ink);
    text-decoration: none;
}

.tool-section--blue .tool-content a {
    color: #6bb3ff;
}

.tool-section--blue .tool-content a:hover,
.tool-section--blue .tool-content a:focus-visible {
    color: #8cc5ff;
}

.tool-media img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(21, 34, 56, 0.22);
    object-fit: cover;
}

.tool-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-light {
    background-color: var(--white);
    color: var(--ink);
}

.btn-outline {
    border: 2px solid currentColor;
    background-color: transparent;
    color: inherit;
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background-color: rgba(255, 255, 255, 0.2);
}

.tool-section--light .btn-outline {
    color: var(--teal);
    border-color: var(--teal);
}

.tool-section--light .btn-outline:hover,
.tool-section--light .btn-outline:focus-visible {
    background-color: rgba(31, 111, 120, 0.1);
}

.tool-quote {
    padding: clamp(3rem, 6vw, 4.5rem) clamp(6vw, 9vw, 12vw);
    text-align: center;
    background-image: linear-gradient(rgba(31, 111, 120, 0.85), rgba(21, 34, 56, 0.85)), url("images/546469432.jpg");
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.tool-quote blockquote {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    margin: 0 0 1rem;
}

.tool-quote cite {
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

body[data-page="online-tools"] {
    background-color: var(--cloud);
}

.books-main {
    background-color: var(--white);
}

.books-hero {
    position: relative;
    min-height: clamp(15rem, 40vw, 18rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 6vw, 4.5rem) 6vw;
    background-image: url("images/412132629.jpg");
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.books-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 34, 56, 0.8), rgba(31, 111, 120, 0.6));
}

.books-hero-content {
    position: relative;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.books-hero-content h1 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.books-hero-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.book-feature {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 5vw, 3rem);
    align-items: center;
    padding: clamp(3rem, 7vw, 5rem) clamp(6vw, 9vw, 12vw);
}

.book-feature--dark {
    background: radial-gradient(circle at top left, rgba(48, 79, 102, 0.9), rgba(21, 34, 56, 0.95));
    color: var(--white);
}

/* Resilience Recipe Section */
.resilience-recipe {
    background: #000000;
    grid-template-columns: 1fr 1fr;
    padding: clamp(3rem, 6vw, 5rem) clamp(6vw, 9vw, 12vw);
}

.resilience-recipe .book-feature_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: clamp(2rem, 4vw, 3rem);
    text-align: center;
    align-items: center;
}

.resilience-recipe .book-feature_content h2 {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    text-align: center;
}

.resilience-recipe .book-feature_subtitle {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    text-align: center;
}

.book-feature_separator {
    width: 100%;
    max-width: 350px;
    height: 1px;
    background-color: var(--white);
    margin: 0 auto 1.25rem;
    opacity: 0.8;
}

.resilience-recipe .book-feature_description {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(0.875rem, 1.3vw, 1rem);
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    text-align: center;
    max-width: 480px;
}

.book-feature_button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.resilience-recipe .book-feature_media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.resilience-recipe .book-feature_media a {
    display: block;
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s ease;
}

.resilience-recipe .book-feature_media a:hover,
.resilience-recipe .book-feature_media a:focus-visible {
    transform: scale(1.05);
}

.resilience-recipe .book-feature_media img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    display: block;
}

.btn-resilience-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.5rem;
    border-radius: 4px;
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #333333;
    color: var(--white);
    border: none;
}

.btn-resilience-order:hover,
.btn-resilience-order:focus-visible {
    background-color: #444444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.resilience-recipe-description {
    background-color: #000000;
    padding: clamp(3rem, 6vw, 5rem) clamp(6vw, 9vw, 12vw);
    color: var(--white);
}

.resilience-recipe-description-content {
    max-width: 900px;
    margin: 0 auto;
}

.resilience-recipe-description-content p {
    font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: var(--white);
    margin: 0 0 1.5rem;
    text-align: left;
}

.resilience-recipe-description-content p:last-child {
    margin-bottom: 0;
}

.book-feature--midnight {
    background: radial-gradient(circle at top right, rgba(33, 60, 94, 0.95), rgba(9, 21, 36, 0.95));
    color: var(--white);
}

.book-feature_content h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 0.5rem;
}

.book-feature_subtitle {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
}

.book-feature_content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
}

.book-feature_media img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    object-fit: cover;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: var(--white);
    background-color: transparent;
    padding: 0.75rem 1.9rem;
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    background-color: rgba(255, 255, 255, 0.15);
}

.book-description {
    padding: clamp(2.5rem, 6vw, 4rem) clamp(6vw, 9vw, 12vw);
    background-color: var(--white);
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.book-testimonials {
    padding: clamp(3rem, 7vw, 4.5rem) clamp(6vw, 9vw, 12vw);
    background-color: var(--cloud);
    color: var(--ink);
}

.book-testimonials h3 {
    text-align: center;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin-bottom: 2rem;
}

.book-quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.book-quote {
    background-color: var(--white);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(21, 34, 56, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.book-quote p {
    margin: 0;
    color: var(--text-secondary);
}

.book-quote_author {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    color: var(--teal);
}

.books-cta {
    padding: clamp(3rem, 7vw, 4.5rem) clamp(6vw, 9vw, 12vw) clamp(4rem, 8vw, 6rem);
    text-align: center;
    background-color: var(--white);
}

.books-cta_buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 420px;
    margin: 0 auto;
}

.books-cta_secondary {
    color: var(--teal);
    border-color: var(--teal);
    background-color: transparent;
}

.books-cta_secondary:hover,
.books-cta_secondary:focus-visible {
    background-color: rgba(31, 111, 120, 0.1);
    color: var(--teal);
}

.blog-main {
    background-color: var(--white);
}

.blog-hero {
    position: relative;
    min-height: clamp(14rem, 38vw, 16rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 6vw, 4rem) 6vw;
    background-image: url("https://images.unsplash.com/photo-1455885732257-23bbd90b43c1?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 34, 56, 0.85), rgba(31, 111, 120, 0.6));
}

.blog-hero-content {
    position: relative;
    text-align: center;
    max-width: 580px;
}

.blog-hero-content h1 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(2rem, 3.4vw, 2.5rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.blog-hero-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.blog-content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 3rem);
    padding: clamp(3rem, 7vw, 4.5rem) clamp(6vw, 9vw, 12vw) clamp(4rem, 8vw, 6rem);
    background-color: var(--cloud);
}

.blog-entry {
    background-color: var(--white);
    border-radius: 18px;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    box-shadow: 0 16px 32px rgba(21, 34, 56, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.blog-entry + .blog-entry {
    margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.blog-entry h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    margin: 0;
    color: var(--ink);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-entry p {
    color: var(--text-secondary);
    margin: 0;
}

.blog-readmore {
    align-self: flex-start;
    font-weight: 600;
    color: var(--teal);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.blog-sidebar_card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 16px 32px rgba(21, 34, 56, 0.08);
}

.blog-sidebar_card h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--ink);
}

.blog-sidebar_card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar_card li + li {
    margin-top: 0.5rem;
}

.blog-sidebar_card a {
    color: var(--teal);
    font-weight: 600;
}

.blog-sidebar_card p {
    margin: 0;
    color: var(--text-secondary);
}

.clinic-main {
    background-color: var(--white);
}

.clinic-hero {
    position: relative;
    min-height: clamp(16rem, 42vw, 18rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 6vw, 4.5rem) 6vw;
    background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.clinic-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(21, 34, 56, 0.85), rgba(31, 111, 120, 0.65));
}

.clinic-hero-content {
    position: relative;
    text-align: center;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.clinic-hero-content h1 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0;
}

.clinic-hero-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.clinic-intro {
    padding: clamp(3rem, 7vw, 5rem) clamp(6vw, 9vw, 12vw);
    background-color: var(--cloud);
}

.clinic-intro h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--ink);
    position: relative;
    padding-bottom: 1rem;
}

.clinic-intro h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    border-radius: 2px;
}

.clinic-intro p {
    max-width: 860px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    text-align: center;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.8;
}

.clinic-treatment-schedule-wrapper {
    margin-top: 2rem;
    max-width: 1000px;
}

.clinic-treatment-list {
    display: block;
    align-items: start;
}

.clinic-treatment-list > div {
    background-color: var(--white);
    border-radius: 16px;
    padding: clamp(2rem, 4vw, 2.5rem);
    box-shadow: 0 8px 24px rgba(21, 34, 56, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clinic-treatment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

.clinic-treatment-left {
    flex: 1;
}

.clinic-treatment-list > div:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(21, 34, 56, 0.12);
}

.clinic-treatment-list h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    margin-bottom: 1.5rem;
    color: var(--ink);
    position: relative;
    padding-bottom: 0.75rem;
}

.clinic-treatment-list h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--teal);
    border-radius: 2px;
}

.clinic-treatment-list ul {
    margin: 0;
    padding-left: 0;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.clinic-treatment-list ul li {
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.clinic-treatment-list ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
    font-size: 1.1em;
}

.clinic-schedule-button-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 2rem;
    border-left: 2px solid rgba(31, 111, 120, 0.1);
}

.clinic-schedule-button-wrapper h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    margin-bottom: 1.5rem;
    color: var(--ink);
    font-weight: 600;
}

.clinic-schedule-button-wrapper .btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(31, 111, 120, 0.3);
    transition: all 0.3s ease;
}

.clinic-schedule-button-wrapper .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 111, 120, 0.4);
}

.clinic-additional-info-section {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.clinic-cta-card {
    background-color: var(--white);
    border-radius: 18px;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    box-shadow: 0 18px 38px rgba(21, 34, 56, 0.08);
    max-width: 700px;
    margin: 0 auto;
    border-top: 4px solid var(--teal);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clinic-cta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(21, 34, 56, 0.12);
}

.clinic-cta-card h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    margin-bottom: 1.25rem;
    color: var(--ink);
    position: relative;
    padding-bottom: 0.75rem;
}

.clinic-cta-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--teal);
    border-radius: 2px;
}

.clinic-cta-card address {
    font-style: normal;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.clinic-cta-card a {
    color: var(--teal);
    font-weight: 600;
}

.clinic-note {
    font-size: 0.9rem;
    color: rgba(21, 34, 56, 0.65);
}



.clinic-location {
    margin-top: clamp(3rem, 6vw, 4rem);
    padding: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--white) 0%, var(--cloud) 100%);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(21, 34, 56, 0.08), 0 4px 12px rgba(21, 34, 56, 0.04);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(31, 111, 120, 0.1);
    position: relative;
    overflow: hidden;
}

.clinic-location::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.clinic-location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 5rem);
    align-items: start;
}

.clinic-location-address {
    text-align: left;
}

.clinic-location-address h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 2.5rem;
    color: var(--ink);
    position: relative;
    padding-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.clinic-location-address h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    border-radius: 2px;
}

.clinic-location-address address {
    font-style: normal;
    color: var(--ink);
    line-height: 1.8;
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--teal);
    box-shadow: 0 4px 16px rgba(21, 34, 56, 0.06);
    margin-bottom: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clinic-location-address address:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 34, 56, 0.1);
}

.clinic-location-address address a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.clinic-location-address address a:hover {
    color: var(--ink);
    text-decoration: underline;
}

.clinic-location-address p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    margin-bottom: 1.5rem;
}

.clinic-location-address p:last-of-type {
    margin-bottom: 0;
    padding: 1.5rem;
    background-color: rgba(31, 111, 120, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
    font-style: italic;
    color: var(--ink);
}

.clinic-location-address p a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.clinic-location-address p a:hover {
    color: var(--ink);
    border-bottom-color: var(--teal);
}

.clinic-location-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.clinic-location-image::before {
    content: "";
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, var(--teal), var(--gold));
    border-radius: 20px;
    opacity: 0.1;
    z-index: 0;
}

.clinic-location-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(21, 34, 56, 0.15);
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clinic-location-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 24px 48px rgba(21, 34, 56, 0.2);
}

.clinic-services {
    padding: clamp(3.5rem, 7vw, 5rem) clamp(6vw, 9vw, 12vw);
    background-color: var(--cloud);
    color: var(--text-secondary);
}

.clinic-services h2 {
    text-align: center;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    color: var(--ink);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
    width: 100%;
}

.clinic-services h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    border-radius: 2px;
}

.clinic-services > p {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.8;
}

.clinic-service-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 5vw, 3rem);
}

.clinic-service-columns article {
    background-color: var(--white);
    border-radius: 18px;
    padding: clamp(2rem, 4vw, 2.5rem);
    box-shadow: 0 12px 28px rgba(21, 34, 56, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--teal);
}

.clinic-service-columns article:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(21, 34, 56, 0.15);
}

.clinic-service-columns h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    margin-bottom: 1.5rem;
    color: var(--ink);
    position: relative;
    padding-bottom: 0.75rem;
}

.clinic-service-columns h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--teal);
    border-radius: 2px;
}

.clinic-service-columns h4 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    margin: 1.75rem 0 1rem;
    color: var(--ink);
    padding-left: 1rem;
    border-left: 3px solid var(--gold);
}

.clinic-service-columns ul {
    margin: 0;
    padding-left: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.clinic-billing {
    margin-top: clamp(3rem, 6vw, 4rem);
    background-color: var(--white);
    border-radius: 18px;
    padding: clamp(2.5rem, 5vw, 3rem);
    box-shadow: 0 12px 28px rgba(21, 34, 56, 0.1);
    color: var(--text-secondary);
    border-left: 4px solid var(--teal);
}

.clinic-billing h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    margin-bottom: 1.5rem;
    color: var(--ink);
    position: relative;
    padding-bottom: 0.75rem;
}

.clinic-billing h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--teal);
    border-radius: 2px;
}

.clinic-online-training {
    padding: clamp(3.5rem, 7vw, 5rem) clamp(6vw, 9vw, 12vw) clamp(4.5rem, 8vw, 6rem);
    background: linear-gradient(135deg, rgba(31, 111, 120, 0.08), rgba(21, 34, 56, 0.08));
    text-align: center;
}

.clinic-online-training h2 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    color: var(--ink);
    margin-bottom: 1rem;
}

.clinic-online-training h3 {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.clinic-online-training p {
    max-width: 760px;
    margin: 0 auto 1.75rem;
    color: var(--text-secondary);
}

.clinic-training-list {
    max-width: 640px;
    margin: 0 auto 2rem;
    text-align: left;
    padding-left: 1.2rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .header-line {
        display: none;
    }

    .header-line.menu-open {
        display: block;
        margin-top: 1.5rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.menu-open {
        max-height: 500px;
        padding: 1rem 0;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 1rem;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1.5rem 6vw;
    }

    .header-top {
        margin-bottom: 0;
    }

    .site-title {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
        margin-bottom: 0;
    }

    .hero {
        height: clamp(22rem, 80vh, 28rem);
        padding: 0 10vw;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .intro-image {
        min-height: 300px;
    }

    .services-showcase {
        padding: clamp(3rem, 6vw, 4rem) 4vw;
        min-height: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-image {
        height: 250px;
    }

    .site-footer {
        padding: 2rem 6vw;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-text {
        min-width: auto;
    }

    .footer-links {
        justify-content: center;
        gap: 1rem;
    }

    .bio-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tools-slider {
        max-width: 100%;
        padding: 0 1rem;
        margin: 1.5rem auto 0;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-arrow--prev {
        left: 10px;
    }

    .slider-arrow--next {
        right: 10px;
    }

    .slider-container {
        padding: 1.5rem;
        min-height: 300px;
    }

    .slider-track {
        min-height: 300px;
    }

    .slider-slide {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

    .tools-logo {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .cat-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cat-right-column {
        order: -1;
    }

    .cat-logo-container {
        max-width: 100%;
    }

    .cat-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-cat-learn,
    .btn-cat-order {
        width: 100%;
        max-width: 300px;
    }

    .camp-cope-a-lot {
        padding: clamp(2rem, 5vw, 3rem) clamp(4vw, 6vw, 8vw);
        gap: 2rem;
    }

    .camp-illustration {
        max-width: 100%;
    }

    .camp-description {
        text-align: left;
    }

    .camp-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn-camp-learn,
    .btn-camp-order {
        width: 100%;
        max-width: 300px;
    }

    .books-hero-content h1 {
        white-space: normal;
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        text-align: center;
    }

    .resilience-recipe {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .resilience-recipe .book-feature_content {
        padding-right: 0;
        order: 2;
        text-align: center;
    }

    .resilience-recipe .book-feature_content h2,
    .resilience-recipe .book-feature_subtitle,
    .resilience-recipe .book-feature_description {
        text-align: center;
    }

    .book-feature_separator {
        max-width: 100%;
    }

    .resilience-recipe .book-feature_media {
        order: 1;
    }

    .resilience-recipe .book-feature_media img {
        max-width: 100%;
    }

    .btn-resilience-order {
        width: 100%;
        max-width: 300px;
    }

    .resilience-recipe-description {
        padding: clamp(2rem, 5vw, 3rem) clamp(4vw, 6vw, 8vw);
    }

    .resilience-recipe-description-content p {
        text-align: left;
    }

    .coping-cat-parents {
        padding: clamp(2rem, 5vw, 3rem) clamp(4vw, 6vw, 8vw);
    }

    .ccp-title {
        flex-wrap: wrap;
    }

    .bio-hero-content {
        order: 2;
    }

    .bio-hero-image {
        order: 1;
    }

    .bio-hero-image img {
        max-width: 280px;
    }

    .bio-hero p {
        text-align: left;
    }

    .clinic-treatment-schedule-wrapper {
        max-width: 100%;
    }

    .clinic-treatment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .clinic-schedule-button-wrapper {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid rgba(31, 111, 120, 0.1);
        padding-top: 2rem;
        margin-top: 2rem;
    }

    .clinic-location {
        padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
        border-radius: 20px;
    }

    .clinic-location-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .clinic-location-address {
        text-align: left;
        order: 2;
    }

    .clinic-location-address h3 {
        text-align: center;
    }

    .clinic-location-address address {
        padding: 2rem 1.5rem;
    }

    .clinic-location-address p:last-of-type {
        padding: 1.25rem;
    }

    .clinic-location-image {
        order: 1;
    }
}

