.dc-ah {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Subtle warm gradient bg ── */
.dc-ah .dah-bg-wash {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 10% 90%, rgba(167,130,120,0.04) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 85% 15%, rgba(167,130,120,0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* ── Grid layout ── */
.dc-ah .dah-grid {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: start;
    padding: clamp(48px, 6vw, 100px) clamp(24px, 4vw, 60px) clamp(40px, 5vw, 80px);
}

/* TEXT COLUMN */
.dc-ah .dah-text {
    position: relative;
    z-index: 2;
    padding-top: 20px;
}

/* Breadcrumbs */
.dc-ah .dah-bc {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: clamp(20px, 2.5vw, 36px);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.3px;
}
.dc-ah .dah-bc a {
    color: #999;
    text-decoration: none;
    transition: color 0.25s;
}
.dc-ah .dah-bc a:hover { color: #A78278; }
.dc-ah .dah-bc__sep {
    color: #ccc;
    margin: 0 10px;
    font-size: 9px;
}
.dc-ah .dah-bc__cur {
    color: #1a1a2e;
    font-weight: 600;
}

/* Badge / Subtitle */
.dc-ah .dah-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(16px, 2vw, 26px);
}
.dc-ah .dah-badge__line {
    width: 36px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #A78278);
    flex-shrink: 0;
}
.dc-ah .dah-badge__line--r {
    background: linear-gradient(90deg, #A78278, transparent);
}
.dc-ah .dah-badge__text {
    font-family: 'Trajan Pro', 'Cinzel', serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #8B6B62;
}

/* Title */
.dc-ah .dah-title {
    font-size: clamp(30px, 4.2vw, 52px);
    font-weight: 300;
    color: #1a1a2e;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 clamp(14px, 1.5vw, 22px);
    text-wrap: balance;
}

/* Description */
.dc-ah .dah-desc {
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.8;
    color: #666;
    font-weight: 350;
    max-width: 520px;
    margin: 0 0 clamp(20px, 2vw, 30px);
}

/* USP chips */
.dc-ah .dah-usps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: clamp(22px, 2.5vw, 34px);
}
.dc-ah .dah-usp {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    background: linear-gradient(135deg, rgba(167,130,120,0.06) 0%, rgba(167,130,120,0.02) 100%);
    border: 1px solid rgba(167,130,120,0.12);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: #5a4a44;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}
.dc-ah .dah-usp:hover {
    background: rgba(167,130,120,0.10);
    border-color: rgba(167,130,120,0.25);
    transform: translateY(-1px);
}
.dc-ah .dah-usp__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #A78278;
    flex-shrink: 0;
}

/* Trust */
.dc-ah .dah-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999;
    font-weight: 400;
}
.dc-ah .dah-trust__ico {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(167,130,120,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dc-ah .dah-trust__ico svg { width: 10px; height: 10px; color: #A78278; }

/* ── Scheduler Column ── */
.dc-ah .dah-scheduler {
    position: relative;
}

.dc-ah .dah-scheduler__frame {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(167,130,120,0.12);
    box-shadow: 0 8px 40px rgba(26,26,46,0.06);
    overflow: hidden;
    min-height: 500px;
}

/* Clinicminds iframe fills the frame */
.dc-ah .dah-scheduler__frame .clinicminds-scheduler-frame {
    width: 100%;
    min-height: 500px;
}

.dc-ah .dah-scheduler__frame iframe {
    border: none;
    border-radius: 20px;
}

/* Placeholder when no URL configured */
.dc-ah .dah-scheduler__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 400px;
    color: #bbb;
    font-size: 14px;
    font-weight: 400;
}
.dc-ah .dah-scheduler__placeholder svg {
    width: 48px;
    height: 48px;
    color: rgba(167,130,120,0.3);
}

/* Bottom accent */
.dc-ah .dah-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(167,130,120,0.15) 30%, rgba(167,130,120,0.15) 70%, transparent 100%);
}

/* Scroll-driven entry */
@keyframes dahFadeUp {
    from { opacity: 0; transform: translateY(2rem); }
    to   { opacity: 1; transform: translateY(0); }
}
.dc-ah .dah-text { animation: dahFadeUp 0.6s ease both; animation-timeline: view(); animation-range: entry 0% entry 40%; }
.dc-ah .dah-scheduler { animation: dahFadeUp 0.6s ease both; animation-timeline: view(); animation-range: entry 5% entry 45%; }

@supports not (animation-timeline: view()) {
    .dc-ah .dah-text,
    .dc-ah .dah-scheduler { opacity: 0; transform: translateY(24px); }
    .dc-ah.dah--vis .dah-text {
        opacity: 1; transform: translateY(0);
        transition: opacity 0.6s ease 0.05s, transform 0.6s ease 0.05s;
    }
    .dc-ah.dah--vis .dah-scheduler {
        opacity: 1; transform: translateY(0);
        transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dc-ah .dah-text,
    .dc-ah .dah-scheduler { animation: none; opacity: 1; transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .dc-ah .dah-grid { gap: 28px; }
}

@media (max-width: 900px) {
    .dc-ah .dah-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 24px 36px;
    }
    .dc-ah .dah-text { order: 1; padding-top: 0; }
    .dc-ah .dah-scheduler { order: 2; }
    .dc-ah .dah-bc { justify-content: center; }
    .dc-ah .dah-badge { justify-content: center; }
    .dc-ah .dah-desc { max-width: none; margin-left: auto; margin-right: auto; }
    .dc-ah .dah-usps { justify-content: center; }
    .dc-ah .dah-trust { justify-content: center; }
    .dc-ah .dah-scheduler__frame { border-radius: 16px; }
}

@media (max-width: 640px) {
    .dc-ah .dah-grid { padding: 32px 14px 28px; gap: 20px; }
    .dc-ah .dah-bc { font-size: 10px; margin-bottom: 14px; }
    .dc-ah .dah-bc__sep { margin: 0 6px; font-size: 8px; }
    .dc-ah .dah-badge { gap: 8px; margin-bottom: 10px; }
    .dc-ah .dah-badge__line { width: 22px; }
    .dc-ah .dah-badge__text { font-size: 9px; letter-spacing: 2px; }
    .dc-ah .dah-desc { font-size: 13px; }
    .dc-ah .dah-usps { gap: 5px; }
    .dc-ah .dah-usp { padding: 5px 11px; font-size: 11px; }
    .dc-ah .dah-scheduler__frame {
        border-radius: 12px;
        min-height: 400px;
    }
    .dc-ah .dah-scheduler__frame .clinicminds-scheduler-frame {
        min-height: 400px;
    }
}
