/* ═════════════════════════════════════════════════════════════
   Dr. Pocsay Ágnes — Psychiatric landing page
   Design language: calm, editorial, premium. Sage-green accent.
   ════════════════════════════════════════════════════════════ */

.psych-page {
    --psych-green: #799c86;
    --psych-green-dark: #5a7a66;
    --psych-green-soft: #eaf1ed;
    --psych-green-tint: #f4f8f6;
    --psych-ink: #2c3332;
    --psych-ink-soft: #5c6664;
    --psych-ink-mute: #8a9391;
    --psych-line: #e3e6e4;
    --psych-cream: #fbfaf7;
    --psych-sand: #f5f2ec;
    --psych-radius: 14px;
    --psych-radius-lg: 22px;
    --psych-serif: 'Marcellus', 'Playfair Display', Georgia, serif;
    --psych-sans:  'Montserrat', -apple-system, sans-serif;
    font-family: var(--psych-sans);
    color: var(--psych-ink);
    background: var(--psych-cream);
    line-height: 1.6;
}
.psych-page * { box-sizing: border-box; }

.psych-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── typography primitives ── */
.psych-page .psych-eyebrow {
    font-family: var(--psych-sans);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    font-weight: 500;
    color: var(--psych-green);
    margin-bottom: 18px;
}
.psych-page .psych-eyebrow--light { color: rgba(255,255,255,0.75); }
.psych-page .psych-eyebrow--right { text-align: left; }

.psych-page .psych-h2 {
    font-family: var(--psych-serif);
    font-weight: 400;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--psych-ink);
    margin: 0 0 22px;
}
.psych-page .psych-h2--light { color: #fff; }

.psych-page .psych-h3 {
    font-family: var(--psych-serif);
    font-weight: 400;
    font-size: 24px;
    letter-spacing: -0.005em;
    margin: 0;
}

.psych-label {
    display: block;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.14em;
    font-weight: 500;
    color: var(--psych-ink-soft);
    margin-bottom: 12px;
}

.psych-section-head {
    text-align: center;
    margin-bottom: 42px;
}
.psych-section-head .psych-eyebrow { display: inline-block; }
.psych-section-sub {
    max-width: 560px;
    margin: 0 auto;
    color: var(--psych-ink-soft);
}

/* ═════════════ HERO ═════════════ */
.psych-hero {
    background: #fff;
    padding: clamp(50px, 8vw, 96px) 0 clamp(30px, 4vw, 55px);
    border-bottom: 1px solid var(--psych-line);
}
.psych-hero__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}
.psych-hero__eyebrow {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--psych-green);
    margin-bottom: 20px;
    font-weight: 500;
}
.psych-hero__title {
    font-family: var(--psych-serif);
    font-weight: 400;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: var(--psych-ink);
}
.psych-hero__subtitle {
    font-family: var(--psych-serif);
    font-style: italic;
    font-size: clamp(18px, 2vw, 22px);
    color: var(--psych-green-dark);
    margin-bottom: 28px;
}
.psych-hero__highlight {
    font-size: 18px;
    font-weight: 600;
    max-width: 500px;
    color: var(--psych-ink);
    margin: 0 0 20px;
    line-height: 1.45;
}

/* Specialty badges */
.psych-hero__badges {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.psych-hero__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 6px 13px;
    background: #fff;
    border: 1px solid rgba(121, 156, 134, 0.35);
    border-radius: 999px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.psych-hero__badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("../img/widget-pattern-wave.svg");
    background-size: 280% 280%;
    background-position: -30% 50%;
    background-repeat: no-repeat;
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    mask-image: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}
.psych-hero__badge > span {
    position: relative;
    z-index: 1;
    font-family: var(--psych-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--psych-green-dark);
    line-height: 1;
}
.psych-hero__badge:hover {
    transform: translateY(-2px);
    border-color: var(--psych-green);
    box-shadow: 0 10px 20px -10px rgba(121, 156, 134, 0.45);
}
.psych-hero__lead {
    font-size: 17px;
    max-width: 500px;
    color: var(--psych-ink-soft);
    margin-bottom: 20px;
}
.psych-hero__lead--secondary {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 36px;
}
.psych-hero__cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.psych-hero__portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.psych-hero__portrait-frame {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow:
        0 30px 60px -18px rgba(60, 80, 70, 0.28),
        0 12px 24px -10px rgba(60, 80, 70, 0.12),
        inset 0 0 0 1px rgba(121, 156, 134, 0.14);
}
.psych-hero__portrait-frame::after { display: none; }
.psych-hero__portrait-frame img {
    position: absolute;
    top: -8%;
    left: 50%;
    transform: translateX(-50%);
    height: 108%;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: top center;
    display: block;
}
.psych-hero__portrait-caption {
    font-size: 12.5px;
    color: var(--psych-ink-mute);
    letter-spacing: 0.04em;
    display: flex;
    gap: 10px;
    align-items: center;
}
.psych-hero__portrait-caption .dot { opacity: .55; }

/* ═════════════ BUTTONS ═════════════ */
.psych-page .psych-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--psych-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    line-height: 1;
}
.psych-page .psych-btn--primary {
    background: var(--psych-green);
    color: #fff;
    box-shadow: 0 14px 28px -14px rgba(121,156,134,0.55);
}
.psych-page .psych-btn--primary:hover {
    background: var(--psych-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 18px 32px -14px rgba(121,156,134,0.65);
}
.psych-page .psych-btn--ghost {
    background: transparent;
    color: var(--psych-ink);
    border-color: var(--psych-line);
}
.psych-page .psych-btn--ghost:hover {
    border-color: var(--psych-green);
    color: var(--psych-green-dark);
}

/* ═════════════ BOOKING SECTION ═════════════ */
.psych-booking-section {
    padding: clamp(30px, 4vw, 55px) 0 clamp(60px, 8vw, 100px);
}
.psych-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 28px;
    align-items: start;
}
.psych-card {
    background: #fff;
    border: 1px solid var(--psych-line);
    border-radius: var(--psych-radius-lg);
    padding: clamp(24px, 3vw, 38px);
    box-shadow: 0 1px 3px rgba(44,51,50,0.04);
    min-width: 0;
    overflow: hidden;
}

/* ── Service tabs ── */
.psych-service-select { margin-bottom: 28px; }
.psych-service-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.psych-service-tab {
    background: #fbfaf7;
    border: 1.5px solid #e3e6e4;
    border-radius: 10px;
    padding: 14px 18px;
    text-align: left;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-family: var(--psych-sans);
}
.psych-service-tab:hover {
    border-color: #5cb85c;
}
.psych-service-tab.is-active {
    border-color: #5cb85c;
    box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.14);
}
.psych-service-tab__title {
    font-weight: 600;
    font-size: 14.5px;
    color: #2c3332;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.psych-service-tab__sub {
    font-weight: 500;
    font-size: 13px;
    color: #2c3332;
}
.psych-service-tab__amount {
    font-weight: 700;
    font-size: 15px;
    color: #5cb85c;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.psych-service-hint {
    margin-top: 12px;
    font-size: 13px;
    color: var(--psych-ink-mute);
    font-style: italic;
}

/* ── Calendar wrap (locked state) ── */
.psych-calendar-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    position: relative;
    padding-top: 22px;
    border-top: 1px solid var(--psych-line);
    min-width: 0;
    max-width: 100%;
}
.psych-calendar-wrap[data-state="locked"] .psych-calendar,
.psych-calendar-wrap[data-state="locked"] .psych-slots {
    opacity: 0.35;
    pointer-events: none;
    filter: blur(0.5px);
}
.psych-calendar-overlay {
    display: none;
    position: absolute;
    inset: 22px 0 0 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.95));
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 12px;
    color: var(--psych-ink-soft);
    font-style: italic;
    text-align: center;
    padding: 20px;
}
.psych-calendar-wrap[data-state="locked"] .psych-calendar-overlay {
    display: flex;
}

/* ── Calendar ── */
.psych-calendar {
    width: 100%;
    min-width: 0;
    flex-shrink: 0;
}
.psych-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.psych-cal-nav {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--psych-line);
    color: var(--psych-ink);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.psych-cal-nav:hover { background: var(--psych-green-soft); border-color: var(--psych-green); color: var(--psych-green-dark); }
.psych-cal-nav:disabled { opacity: .3; cursor: not-allowed; }
.psych-cal-month {
    font-family: var(--psych-serif);
    font-size: 18px;
    letter-spacing: 0.01em;
    color: var(--psych-ink);
}
.psych-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 6px;
}
.psych-cal-weekdays span {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--psych-ink-mute);
    padding: 6px 0;
}
.psych-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    width: 100%;
    min-width: 0;
}
.psych-cal-day {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    box-sizing: border-box;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--psych-ink);
    font-family: var(--psych-sans);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    line-height: 1;
    text-align: center;
}
.psych-cal-day--empty { visibility: hidden; pointer-events: none; }
.psych-cal-day--muted { color: var(--psych-ink-mute); opacity: 0.35; cursor: not-allowed; }
.psych-cal-day--disabled { color: var(--psych-ink-mute); opacity: 0.35; cursor: not-allowed; pointer-events: none; }
@media (hover: hover) {
    .psych-cal-day--available:hover { background: rgba(92, 184, 92, 0.12); }
}
.psych-cal-day.psych-cal-day--selected,
.psych-cal-day.psych-cal-day--selected:hover,
.psych-cal-day.psych-cal-day--selected:focus,
.psych-cal-day.psych-cal-day--selected:active {
    background: #5cb85c;
    color: #fff;
    font-weight: 600;
}
.psych-cal-day--today::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.5;
}

/* ── Slots ── */
.psych-slots {
    min-height: 320px;
}
.psych-slots-head {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--psych-line);
}
.psych-slots-title {
    display: block;
    font-family: var(--psych-serif);
    font-size: 20px;
    color: var(--psych-ink);
    letter-spacing: -0.005em;
}
.psych-slots-sub {
    display: block;
    margin-top: 4px;
    font-size: 12.5px;
    color: var(--psych-ink-mute);
    letter-spacing: 0.04em;
}
.psych-slots-body {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
    gap: 8px;
}
.psych-slots-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--psych-ink-mute);
    font-style: italic;
    font-size: 14px;
}
.psych-slot-group-label {
    grid-column: 1 / -1;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--psych-ink-mute);
    margin-top: 14px;
    margin-bottom: 2px;
    font-weight: 500;
}
.psych-slot-group-label:first-child { margin-top: 0; }
.psych-slot {
    border: 1px solid var(--psych-line);
    background: #fff;
    color: var(--psych-ink);
    border-radius: 100px;
    padding: 10px 6px;
    font-family: var(--psych-sans);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.18s;
}
.psych-slot:hover:not(:disabled) {
    background: #5cb85c;
    border-color: #5cb85c;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 14px -8px rgba(92, 184, 92, 0.45);
}

/* ═════════════ PRICE LIST (right) ═════════════ */
.psych-card--prices { background: #fff; }
.psych-prices-head { margin-bottom: 22px; }
.psych-price-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.psych-price-item {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--psych-line);
    transition: opacity 0.2s;
}
.psych-price-item:last-child { border-bottom: none; padding-bottom: 0; }
.psych-price-item.is-dimmed { opacity: 0.4; }
.psych-price-item__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
    margin-bottom: 4px;
}
.psych-price-item__name {
    font-weight: 500;
    color: var(--psych-ink);
    font-size: 15.5px;
    line-height: 1.35;
}
.psych-price-item__amount {
    font-family: var(--psych-serif);
    font-size: 20px;
    color: var(--psych-green-dark);
    white-space: nowrap;
    letter-spacing: -0.005em;
}
.psych-price-item__meta {
    font-size: 12.5px;
    color: var(--psych-ink-mute);
    letter-spacing: 0.03em;
}
.psych-price-item__meta .sep { margin: 0 4px; }
.psych-price-item__desc {
    margin-top: 10px;
    font-size: 13.5px;
    color: var(--psych-ink-soft);
    line-height: 1.5;
}
.psych-price-item--aux .psych-price-item__amount { color: var(--psych-ink-soft); font-size: 17px; }

.psych-info-block {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--psych-line);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.psych-info-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 13.5px;
}
.psych-info-label {
    color: var(--psych-ink-mute);
    letter-spacing: 0.04em;
}
.psych-info-value { color: var(--psych-ink); font-weight: 500; text-align: right; }
.psych-info-value a { color: var(--psych-green-dark); text-decoration: none; }
.psych-info-value a:hover { text-decoration: underline; }
.psych-info-row { align-items: flex-start; }
.psych-info-hours {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 400;
    color: var(--psych-ink-mute);
    line-height: 1.5;
    letter-spacing: 0.02em;
}

/* ═════════════ ABOUT ═════════════ */
.psych-about {
    background: linear-gradient(
        180deg,
        var(--psych-cream) 0%,
        var(--psych-sand) 18%,
        var(--psych-sand) 65%,
        #ffffff 100%
    );
    padding: clamp(70px, 9vw, 120px) 0;
}
.psych-about__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(40px, 6vw, 80px);
}
.psych-about p {
    color: var(--psych-ink-soft);
    font-size: 16px;
    margin: 0 0 18px;
}
.psych-about__quote {
    margin-top: 32px !important;
    padding: 24px 28px;
    background: #fff;
    border-left: 3px solid var(--psych-green);
    border-radius: 6px;
    font-family: var(--psych-serif);
    font-style: italic;
    font-size: 18px !important;
    color: var(--psych-ink) !important;
    line-height: 1.5;
}
.psych-about__quote-author {
    display: block;
    margin-top: 12px;
    font-style: italic;
    font-size: 14px;
    color: #9aa39d;
    text-align: right;
}
.psych-specialties {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.psych-specialties li {
    padding: 14px 0 14px 28px;
    border-bottom: 1px solid var(--psych-line);
    position: relative;
    font-size: 15px;
    color: var(--psych-ink);
}
.psych-specialties li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--psych-green);
    opacity: 0.6;
}
.psych-specialties li:last-child { border-bottom: none; }

/* ═════════════ PHILOSOPHY ═════════════ */
.psych-philosophy {
    background: linear-gradient(135deg, #5a7a66 0%, #799c86 100%);
    color: #fff;
    padding: clamp(70px, 9vw, 120px) 0;
    position: relative;
    overflow: hidden;
}
.psych-philosophy::before {
    content: '';
    position: absolute;
    inset: -1px;
    background:
        radial-gradient(ellipse at 10% 0%, rgba(255,255,255,0.08), transparent 40%),
        radial-gradient(ellipse at 90% 100%, rgba(0,0,0,0.15), transparent 50%);
    pointer-events: none;
}
.psych-philosophy__inner {
    position: relative;
    text-align: center;
    max-width: 900px;
}
.psych-signals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0 32px;
    text-align: left;
}
.psych-signal {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--psych-radius);
    padding: 26px 22px;
}
.psych-signal__num {
    font-family: var(--psych-serif);
    font-size: 28px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.psych-signal__text {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255,255,255,0.95);
}
.psych-philosophy__note {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
}

/* ═════════════ MODAL ═════════════ */
.psych-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.psych-modal.is-open { display: flex; }
.psych-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 40, 38, 0.55);
    backdrop-filter: blur(4px);
    animation: psych-fade 0.25s ease;
}
.psych-modal__panel {
    position: relative;
    background: #fff;
    border-radius: var(--psych-radius-lg);
    padding: clamp(28px, 4vw, 44px);
    max-width: 560px;
    width: 100%;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.35);
    animation: psych-rise 0.28s cubic-bezier(.2,.9,.3,1);
}
@keyframes psych-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes psych-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.psych-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 26px;
    color: var(--psych-ink-soft);
    cursor: pointer;
    line-height: 1;
    border-radius: 50%;
    transition: all 0.18s;
}
.psych-modal__close:hover { background: var(--psych-sand); color: var(--psych-ink); }
.psych-modal__head { margin-bottom: 26px; }
.psych-modal__summary {
    margin-top: 18px;
    padding: 16px 18px;
    background: var(--psych-green-tint);
    border-left: 3px solid var(--psych-green);
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
}
.psych-modal__summary strong { color: var(--psych-green-dark); font-weight: 600; }
.psych-modal__summary .row { display: flex; justify-content: space-between; gap: 12px; }
.psych-modal__summary .row + .row { margin-top: 4px; }
.psych-modal__summary .lbl { color: var(--psych-ink-soft); }

/* ═════════════ FORM ═════════════ */
.psych-form__row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.psych-field { margin-bottom: 16px; }
.psych-field label {
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--psych-ink-soft);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.psych-field .req { color: var(--psych-green); }
.psych-field input[type="text"],
.psych-field input[type="email"],
.psych-field input[type="tel"],
.psych-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--psych-line);
    border-radius: 10px;
    font-family: var(--psych-sans);
    font-size: 15px;
    color: var(--psych-ink);
    background: #fff;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.psych-field input:focus,
.psych-field textarea:focus {
    outline: none;
    border-color: var(--psych-green);
    box-shadow: 0 0 0 4px rgba(121,156,134,0.12);
}
.psych-field textarea { resize: vertical; min-height: 80px; }
.psych-field--check label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 13.5px;
    color: var(--psych-ink-soft);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.psych-field--check input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--psych-green);
    width: 16px;
    height: 16px;
}
.psych-field--check a { color: var(--psych-green-dark); }

.psych-form__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--psych-line);
}
.psych-form__error {
    margin-top: 14px;
    padding: 12px 14px;
    background: #fdecec;
    color: #a12b2b;
    border-radius: 8px;
    font-size: 13.5px;
}
.psych-btn .spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: psych-spin 0.7s linear infinite;
}
.psych-btn.is-loading .spinner { display: inline-block; }
.psych-btn.is-loading .label { opacity: 0.7; }
.psych-btn.is-loading { pointer-events: none; }
@keyframes psych-spin { to { transform: rotate(360deg); } }

/* ═════════════ RESPONSIVE ═════════════ */
@media (max-width: 900px) {
    .psych-hero__inner { grid-template-columns: 1fr; }
    .psych-hero__portrait { order: -1; }
    .psych-hero__portrait-frame { max-width: 300px; margin: 0 auto; }
}
@media (max-width: 960px) {
    .psych-grid { grid-template-columns: 1fr; }
    .psych-calendar-wrap { grid-template-columns: 1fr; }
    .psych-calendar { width: 100%; max-width: 320px; margin: 0 auto; }
    .psych-about__inner { grid-template-columns: 1fr; }
    .psych-signals { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .psych-service-tabs { grid-template-columns: 1fr; }
    .psych-form__row--2 { grid-template-columns: 1fr; }
    .psych-hero__cta-row .psych-btn { flex: 1; }
    .psych-slots-body { grid-template-columns: repeat(auto-fill, minmax(74px, 1fr)); }
    .psych-modal__panel { padding: 24px 20px; }
}

/* ═════════════ BOOKINGS CLOSED NOTICE ═════════════ */
.psych-bookings-closed {
    text-align: center;
    padding: clamp(30px, 6vw, 70px) 24px;
}
.psych-bookings-closed__icon {
    font-size: 2.6rem;
    margin-bottom: 12px;
}
.psych-bookings-closed__title {
    font-family: var(--psych-font-heading, 'Marcellus', serif);
    font-size: clamp(20px, 2.6vw, 26px);
    color: var(--psych-ink, #2b3a2f);
    margin: 0 0 12px;
}
.psych-bookings-closed__text {
    color: var(--psych-ink-soft, #5a6962);
    font-size: 15px;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.55;
}

/* ═════════════ REVIEWS ═════════════ */
.psych-reviews {
    background: #ffffff;
    padding: clamp(70px, 9vw, 120px) 0;
}
.psych-reviews__inner {
    text-align: center;
}
.psych-reviews .psych-eyebrow {
    margin-bottom: 12px;
}
.psych-reviews .psych-h2 {
    margin-bottom: 18px;
}
.psych-reviews__lead {
    color: var(--psych-ink-soft);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 40px;
}
.psych-reviews__widget {
    max-width: 1100px;
    margin: 0 auto;
}
