/* Shared styles for service pages */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Sora:wght@600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #1A1F3A;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

h1, h2, h3 {
    font-family: 'Sora', sans-serif;
}

/* Hero section - needs margin for fixed nav */
.hero {
    padding-top: 9rem;
    padding-bottom: 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Sora', sans-serif;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Section styles */
.section {
    margin-bottom: 4rem;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1A1F3A;
    font-family: 'Sora', sans-serif;
}

.section p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1rem;
}

/* Grid layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* CTA section */
.cta {
    background: linear-gradient(135deg, #00D2D3, #009E99);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 16px;
    margin: 4rem 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #009E99;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Navigation styles from homepage */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 5%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    padding: 0.75rem 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled .logo-img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #1A1F3A;
    text-decoration: none;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #FF006D, #A30041);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 18, 118, 0.4);
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #1A1F3A;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

/* Card styles */
.card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FF006D;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00D2D3;
    font-weight: bold;
}

/* Button styles */
.primary-button {
    background: linear-gradient(135deg, #FF006D 0%, #A30041 100%);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(255, 18, 118, 0.3);
    text-decoration: none;
    display: inline-block;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 18, 118, 0.4);
    color: #fff;
}

.secondary-button {
    background: transparent;
    color: #1A1F3A;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: 2px solid #1A1F3A;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: #1A1F3A;
    color: #fff;
    transform: translateY(-3px);
}

/* Footer styles from homepage */
footer {
    background: #1A1F3A;
    color: white;
    padding: 2.5rem 5% 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #FF006D;
}

.footer-column h4 {
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
.acknowledgement {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    max-width: 820px;
    margin: 0 auto 1rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .logo-img {
        height: 48px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        gap: 1rem;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 7rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* ========================
   Page Hero (internal pages)
   ======================== */
.page-hero {
    padding: 9rem 5% 5rem;
    background: linear-gradient(135deg, rgba(255,0,109,0.04) 0%, rgba(0,210,211,0.04) 100%);
    text-align: center;
}
.page-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    color: #1A1F3A;
    margin-bottom: 1rem;
}
.page-hero p {
    font-size: 1.25rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================
   Shared layout helpers
   ======================== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.two-col h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    color: #1A1F3A;
    margin-bottom: 1.5rem;
}
.two-col p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.img-placeholder {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(26,31,58,0.16);
}
.img-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================
   CTA Banner
   ======================== */
.cta-banner {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #FF006D, #A30041);
    text-align: center;
    color: #fff;
}
.cta-banner h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.cta-banner p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.cta-banner a {
    display: inline-block;
    background: #fff;
    color: #A30041;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}
.cta-banner a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* ========================
   Services page
   ======================== */
.services-section {
    padding: 5rem 5%;
}
.services-section:nth-child(even) {
    background: #F8FAFC;
}
.services-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.services-inner h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    color: #1A1F3A;
    margin-bottom: 2rem;
}
.bullet-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.bullet-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: #475569;
    background: #fff;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(26,31,58,0.06);
}
.bullet-list li::before {
    content: "•";
    color: #FF006D;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}
.col-block h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    color: #1A1F3A;
    margin-bottom: 1.5rem;
}
.col-block ul {
    list-style: none;
}
.col-block ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: #475569;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.col-block ul li::before {
    content: "•";
    color: #FF006D;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

/* ========================
   Assessment & Therapy Cards
   ======================== */
.col-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,31,58,0.08);
}
.col-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    color: #fff;
}
.col-card-header svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    flex-shrink: 0;
}
.col-card-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    margin: 0;
}
.col-card-body {
    padding: 1.75rem 2rem 2rem;
}
.col-card-body p {
    color: #475569;
    font-size: 1.0rem;
    margin-bottom: 1.25rem;
}
.col-card-body ul {
    list-style: none;
}
.col-card-body ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.0rem;
    color: #334155;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.col-card-body ul li::before {
    content: "✓";
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    color: #009E99;
}

.setting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.setting-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(26,31,58,0.08);
    text-align: center;
    transition: all 0.3s;
}
.setting-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26,31,58,0.12);
}
.setting-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.setting-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
    stroke-width: 2;
}
.setting-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    color: #1A1F3A;
    margin-bottom: 0.5rem;
}
.setting-card p {
    font-size: 0.9rem;
    color: #475569;
}
.testimonial-highlight {
    background: linear-gradient(135deg, #1A1F3A, #282B89);
    padding: 4rem 5%;
    text-align: center;
    color: #fff;
}
.testimonial-stars {
    font-size: 2rem;
    color: #FFAA00;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}
.testimonial-highlight blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    opacity: 0.95;
}
.testimonial-highlight cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.75;
    font-style: normal;
}

/* ========================
   About page
   ======================== */
.content-section {
    padding: 5rem 5%;
}
.content-section:nth-child(even) {
    background: #F8FAFC;
}
.content-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.feature-list {
    list-style: none;
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.feature-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
    stroke-width: 2.5;
}
.feature-list h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #1A1F3A;
}
.feature-list p {
    font-size: 0.95rem;
    color: #475569;
    margin: 0;
}
.mission-section {
    padding: 5rem 5%;
    text-align: center;
}
.mission-inner {
    max-width: 800px;
    margin: 0 auto;
}
.mission-inner h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    color: #1A1F3A;
    margin-bottom: 1.5rem;
}
.mission-inner p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 1rem;
}

/* ========================
   Contact page
   ======================== */
.contact-section {
    padding: 5rem 5%;
}
.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-details h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    color: #1A1F3A;
    margin-bottom: 2rem;
}
.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
    stroke-width: 2.5;
}
.contact-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    color: #1A1F3A;
    margin-bottom: 0.35rem;
}
.contact-item p,
.contact-item a {
    font-size: 1.05rem;
    color: #475569;
    text-decoration: none;
    line-height: 1.6;
}
.contact-item a:hover { color: #FF006D; }
.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(26,31,58,0.12);
}
.contact-form h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    color: #1A1F3A;
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: #1A1F3A;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #1A1F3A;
    transition: border-color 0.3s;
    background: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF006D;
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-button {
    width: 100%;
    background: linear-gradient(135deg, #FF006D, #A30041);
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(255,0,109,0.3);
}
.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255,0,109,0.4);
}

/* ========================
   Services intro split (image + text)
   ======================== */
.services-intro-split {
    padding: 5rem 5%;
}
.services-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.services-intro-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(26,31,58,0.18);
    aspect-ratio: 4/3;
}
.services-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.services-intro-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.25rem;
    color: #1A1F3A;
    margin-bottom: 1.25rem;
    line-height: 1.25;
}
.services-intro-text p {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.badge-row span {
    background: rgba(255,0,109,0.07);
    color: #A30041;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(255,0,109,0.18);
}

/* ========================
   Photo strip with overlay
   ======================== */
.photo-strip {
    position: relative;
    height: 380px;
    overflow: hidden;
}
.photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.photo-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,31,58,0.8), rgba(40,43,137,0.72));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    text-align: center;
}
.photo-strip-content h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    color: #fff;
    max-width: 760px;
    line-height: 1.5;
    font-style: italic;
    font-weight: 600;
}
.photo-strip-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-top: 1rem;
    font-style: normal;
}

/* ========================
   Hero stats bar
   ======================== */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}
.hero-stats span {
    background: rgba(255,0,109,0.08);
    color: #A30041;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,0,109,0.2);
}

/* ========================
   Service cards grid
   ======================== */
.services-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(26,31,58,0.08);
    transition: all 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(26,31,58,0.14);
}
.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.service-card-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
    stroke-width: 2;
}
.service-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    color: #1A1F3A;
    margin-bottom: 0.75rem;
}
.service-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.service-card ul {
    list-style: none;
    padding: 0;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.75rem;
}
.service-card ul li {
    font-size: 0.88rem;
    color: #64748b;
    padding: 0.25rem 0 0.25rem 1.25rem;
    position: relative;
}
.service-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FF006D;
    font-weight: 600;
}

/* ========================
   How It Works
   ======================== */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.how-step {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(26,31,58,0.07);
    text-align: center;
}
.how-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FF006D, #A30041);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.how-step h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    color: #1A1F3A;
    margin-bottom: 0.75rem;
}
.how-step p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

/* ========================
   Responsive (internal pages)
   ======================== */
@media (max-width: 968px) {
    .page-hero h1 { font-size: 2rem; }
    .two-col { grid-template-columns: 1fr; gap: 2rem; }
    .two-col-reverse .img-placeholder { order: 2; }
    .two-col h2 { font-size: 2rem; }
    .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
    .services-card-grid { grid-template-columns: 1fr 1fr; }
    .how-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
    .services-intro-inner { grid-template-columns: 1fr; gap: 2rem; }
    .photo-strip { height: 280px; }
    .photo-strip-content h3 { font-size: 1.35rem; }
}
@media (max-width: 600px) {
    .services-card-grid { grid-template-columns: 1fr; }
}
