/* ═══════════════════════════════════════════
   PILATES REFORMER — Service Page
   All selectors scoped to .sg-kav-*
   ═══════════════════════════════════════════ */

/* ─── HERO ─── */
.sg-kav-hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 120px;
    background: var(--vanilla-cloud);
    overflow: hidden;
}

.sg-kav-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 55%, rgba(249, 243, 236, 0.5) 100%);
    pointer-events: none;
    z-index: 0;
}

.sg-kav-hero__line {
    position: absolute;
    left: var(--padding-x);
    top: 200px;
    bottom: 140px;
    width: 1px;
    background: linear-gradient(180deg, var(--smoked-mocha) 0%, rgba(130, 111, 95, 0.3) 60%, transparent 100%);
    transform-origin: top center;
    transform: scaleY(0);
    animation: sg-kav-draw-vertical 1.6s var(--ease-out) 0.4s forwards;
    z-index: 1;
}

.sg-kav-hero__line::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -3.5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--smoked-mocha);
    opacity: 0;
    animation: sg-kav-fade 0.6s ease 1.4s both;
}

.sg-kav-hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.sg-kav-hero__dots {
    position: absolute;
    top: 18%;
    right: 4%;
    width: 88px;
    height: 88px;
    background-image: radial-gradient(circle, rgba(130, 111, 95, 0.12) 1.2px, transparent 1.2px);
    background-size: 12px 12px;
    animation: sg-kav-fade 2s ease 1.2s both;
}

.sg-kav-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    gap: 40px;
    min-height: 560px;
}

.sg-kav-hero__content {
    padding-left: 20px;
    padding-right: 50px;
    max-width: 640px;
    animation: sg-kav-fade-up 0.9s var(--ease-out) 0.2s both;
}

.sg-kav-hero__h1 {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 0.92;
    margin: 14px 0 14px;
    color: var(--dark-thyme);
}

.sg-kav-hero__h1-a,
.sg-kav-hero__h1-b {
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    letter-spacing: -0.01em;
}

.sg-kav-hero__h1-b em {
    font-style: italic;
    color: var(--smoked-mocha);
}

.sg-kav-hero__sub {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    color: var(--mocha-light);
    margin: 18px 0 18px;
    letter-spacing: 0.01em;
}

.sg-kav-hero__desc {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.72;
    color: var(--smoked-mocha);
    max-width: 460px;
    margin: 0 0 30px;
    font-weight: 300;
}

.sg-kav-hero__meta {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0 0 32px;
    border-radius: 100px;
    background: rgba(130, 111, 95, 0.08);
}

.sg-kav-hero__meta li {
    padding: 10px 20px;
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--smoked-mocha);
    position: relative;
}

.sg-kav-hero__meta li + li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--mocha-light);
    opacity: 0.5;
}

.sg-kav-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sg-kav-hero__media {
    position: relative;
    height: 82vh;
    max-height: 720px;
    min-height: 540px;
}

.sg-kav-hero__portrait {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(56, 54, 36, 0.18), 0 2px 10px rgba(56, 54, 36, 0.06);
    animation: sg-kav-clip-reveal 1.3s var(--ease-out) 0.3s both;
}

.sg-kav-hero__portrait::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(242, 232, 221, 0.45);
    border-radius: 18px;
    pointer-events: none;
    z-index: 2;
}

.sg-kav-hero__portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.sg-kav-hero__stamp {
    position: absolute;
    bottom: -36px;
    left: -36px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: var(--warm-white);
    border: 1px solid rgba(130, 111, 95, 0.2);
    box-shadow: 0 14px 36px rgba(56, 54, 36, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    animation: sg-kav-stamp-in 0.9s var(--ease-out) 1s forwards;
    z-index: 3;
}

.sg-kav-hero__stamp-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: sg-kav-stamp-spin 30s linear infinite;
}

.sg-kav-hero__stamp-text {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 8px;
    letter-spacing: 0.22em;
    fill: var(--smoked-mocha);
    text-transform: uppercase;
}

.sg-kav-hero__stamp-icon {
    width: 20px;
    height: 20px;
    color: var(--smoked-mocha);
    position: relative;
    z-index: 1;
}

.sg-kav-hero__stamp:hover .sg-kav-hero__stamp-svg {
    animation-play-state: paused;
}

/* ─── MARQUEE ─── */
.sg-kav-marquee {
    padding: 34px 0;
    background: var(--dark-thyme);
    overflow: hidden;
    border-top: 1px solid rgba(130, 111, 95, 0.1);
    border-bottom: 1px solid rgba(130, 111, 95, 0.1);
}

.sg-kav-marquee__track {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    animation: sg-kav-marquee 28s linear infinite;
    width: max-content;
    will-change: transform;
}

.sg-kav-marquee__word {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--mocha-light);
    white-space: nowrap;
    padding: 0 30px;
    opacity: 0.7;
    flex-shrink: 0;
}

.sg-kav-marquee__dot {
    display: inline-flex;
    color: var(--smoked-mocha);
    opacity: 0.5;
    flex-shrink: 0;
}

/* ─── WHAT IS — split with counters ─── */
.sg-kav-what {
    padding: var(--section-py) 0;
}

.sg-kav-what__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.sg-kav-what__media {
    position: relative;
}

.sg-kav-what__img-wrap {
    border-radius: 32px;
    aspect-ratio: 4 / 5;
}

.sg-kav-what__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sg-kav-what__tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(249, 243, 236, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 2;
}

.sg-kav-what__tag-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--smoked-mocha);
}

.sg-kav-what__tag-title {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--dark-thyme);
}

.sg-kav-what__content p {
    font-size: 0.98rem;
    line-height: 1.78;
    color: var(--smoked-mocha);
    font-weight: 300;
    margin-bottom: 16px;
}

.sg-kav-what__counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(56, 54, 36, 0.08);
}

.sg-kav-what__counter {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sg-kav-what__counter-num {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark-thyme);
    line-height: 1;
    letter-spacing: -0.01em;
}

.sg-kav-what__counter-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mocha-light);
}

/* ─── BENEFITS — 6 cards ─── */
.sg-kav-benefits {
    padding: var(--section-py) 0;
    background: var(--vanilla-light);
    position: relative;
    overflow: hidden;
}

.sg-kav-benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 40%, rgba(130, 111, 95, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 85% 70%, rgba(174, 183, 154, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.sg-kav-benefits__inner {
    position: relative;
    z-index: 1;
}

.sg-kav-benefits__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.sg-kav-benefits__header p {
    font-size: 1rem;
    color: var(--mocha-light);
    font-weight: 300;
    margin-top: 16px;
}

.sg-kav-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sg-kav-benefit {
    background: var(--warm-white);
    border: 1px solid rgba(56, 54, 36, 0.05);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    transition: transform var(--duration-md) var(--ease-out),
                box-shadow var(--duration-md) var(--ease-out),
                border-color var(--duration-md) var(--ease-out);
}

.sg-kav-benefit:hover {
    transform: translateY(-6px);
    border-color: rgba(130, 111, 95, 0.1);
    box-shadow: 0 24px 60px rgba(56, 54, 36, 0.08);
}

.sg-kav-benefit__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.sg-kav-benefit__icon svg {
    width: 24px;
    height: 24px;
}

.sg-kav-benefit__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-thyme);
}

.sg-kav-benefit__desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--smoked-mocha);
    font-weight: 300;
    margin: 0;
}

/* ─── PROGRAMS — 3 zigzag tiers ─── */
.sg-kav-programs {
    padding: var(--section-py) 0;
}

.sg-kav-programs__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
}

.sg-kav-programs__header p {
    font-size: 1rem;
    color: var(--mocha-light);
    font-weight: 300;
    margin-top: 16px;
}

.sg-kav-program {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.sg-kav-program:last-child {
    margin-bottom: 0;
}

.sg-kav-program--reverse .sg-kav-program__media {
    order: 2;
}

.sg-kav-program__img-wrap {
    border-radius: var(--radius-img);
    aspect-ratio: 4 / 5;
}

.sg-kav-program__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sg-kav-program__eyebrow {
    display: inline-block;
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--smoked-mocha);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.sg-kav-program__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1.15;
    color: var(--dark-thyme);
    margin-bottom: 18px;
    letter-spacing: -0.005em;
}

.sg-kav-program__intro {
    font-family: var(--font-body);
    font-size: 0.96rem;
    line-height: 1.75;
    color: var(--smoked-mocha);
    font-weight: 300;
    margin-bottom: 16px;
}

.sg-kav-program__detail {
    font-size: 0.92rem;
    line-height: 1.72;
    color: var(--mocha-light);
    font-weight: 300;
    margin-bottom: 24px;
}

.sg-kav-program__for {
    background: var(--vanilla-light);
    border-radius: 18px;
    padding: 20px 22px;
    margin-bottom: 22px;
}

.sg-kav-program__for-label {
    display: block;
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--smoked-mocha);
    margin-bottom: 12px;
}

.sg-kav-program__list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--dark-thyme);
    font-weight: 300;
    margin-bottom: 8px;
}

.sg-kav-program__list li:last-child {
    margin-bottom: 0;
}

.sg-kav-program__list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 11px;
    width: 9px;
    height: 5px;
    border-left: 1.5px solid var(--smoked-mocha);
    border-bottom: 1.5px solid var(--smoked-mocha);
    transform: rotate(-45deg);
}

.sg-kav-program__note {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--dark-thyme);
    margin-bottom: 22px;
    padding: 14px 18px;
    border-left: 2px solid var(--smoked-mocha);
    background: rgba(130, 111, 95, 0.04);
    border-radius: 0 12px 12px 0;
}

.sg-kav-program__cta {
    padding: 14px 30px !important;
}

/* ─── PRICING — 2 editorial panels ─── */
.sg-kav-pricing {
    padding: var(--section-py) 0;
    background: var(--vanilla-cloud);
    position: relative;
}

.sg-kav-pricing__header {
    text-align: center;
    margin-bottom: 54px;
}

.sg-kav-pricing__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(3rem, 5vw, 4.4rem);
    line-height: 1;
    color: var(--dark-thyme);
    margin: 14px 0 8px;
    letter-spacing: -0.01em;
}

.sg-kav-pricing__ornament {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--smoked-mocha);
    letter-spacing: 0.3em;
}

.sg-kav-pricing__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.sg-kav-pricing__panel {
    background: var(--vanilla-light);
    border: 1px solid rgba(56, 54, 36, 0.05);
    border-radius: var(--radius-card);
    padding: 48px 44px;
    box-shadow: 0 4px 24px rgba(56, 54, 36, 0.04);
    transition: box-shadow var(--duration-md) var(--ease-out), transform var(--duration-md) var(--ease-out);
}

.sg-kav-pricing__panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(56, 54, 36, 0.08);
}

.sg-kav-pricing__panel-head {
    text-align: center;
    padding-bottom: 28px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(56, 54, 36, 0.08);
}

.sg-kav-pricing__panel-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    color: var(--dark-thyme);
    margin-bottom: 4px;
    letter-spacing: -0.005em;
}

.sg-kav-pricing__panel-sub {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 0.86rem;
    color: var(--mocha-light);
    letter-spacing: 0.01em;
}

.sg-kav-pricing__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sg-kav-pricing__row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 14px 4px;
}

.sg-kav-pricing__row + .sg-kav-pricing__row {
    border-top: 1px dashed rgba(130, 111, 95, 0.18);
}

.sg-kav-pricing__name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark-thyme);
    justify-self: end;
    letter-spacing: 0.01em;
}

.sg-kav-pricing__dash {
    display: block;
    width: 48px;
    height: 1px;
    background: rgba(56, 54, 36, 0.35);
    position: relative;
}

.sg-kav-pricing__dash::before {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.5rem;
    color: var(--smoked-mocha);
    background: var(--vanilla-light);
    padding: 0 6px;
    line-height: 1;
}

.sg-kav-pricing__price {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--dark-thyme);
    justify-self: start;
    letter-spacing: -0.01em;
}

.sg-kav-pricing__price em {
    font-style: normal;
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: lowercase;
    color: var(--mocha-light);
    margin-left: 4px;
}

.sg-kav-pricing__note {
    text-align: center;
    margin-top: 36px;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mocha-light);
}

.sg-kav-pricing__hybrid {
    position: relative;
    max-width: 1000px;
    margin: 36px auto 0;
    background: linear-gradient(135deg, var(--dark-thyme) 0%, var(--thyme-light) 100%);
    border-radius: var(--radius-card);
    padding: 42px 48px;
    color: var(--vanilla-cloud);
    box-shadow: 0 16px 48px rgba(56, 54, 36, 0.2);
    overflow: hidden;
}

.sg-kav-pricing__hybrid::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(130, 111, 95, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.sg-kav-pricing__hybrid-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    padding: 6px 14px;
    background: var(--smoked-mocha);
    color: var(--warm-white);
    border-radius: 100px;
    z-index: 2;
}

.sg-kav-pricing__hybrid-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.sg-kav-pricing__hybrid-head {
    border-right: 1px solid rgba(242, 232, 221, 0.15);
    padding-right: 30px;
}

.sg-kav-pricing__hybrid-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--warm-white);
}

.sg-kav-pricing__hybrid-sub {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(242, 232, 221, 0.7);
    margin: 0;
}

.sg-kav-pricing__hybrid-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sg-kav-pricing__hybrid-list li {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 12px 4px;
    color: var(--warm-white);
}

.sg-kav-pricing__hybrid-list li + li {
    border-top: 1px dashed rgba(242, 232, 221, 0.15);
}

.sg-kav-pricing__hybrid-list .sg-kav-pricing__name {
    color: var(--vanilla-cloud);
    justify-self: end;
}

.sg-kav-pricing__hybrid-list .sg-kav-pricing__dash {
    background: rgba(242, 232, 221, 0.35);
}

.sg-kav-pricing__hybrid-list .sg-kav-pricing__dash::before {
    background: var(--thyme-light);
    color: var(--mocha-light);
}

.sg-kav-pricing__hybrid-list .sg-kav-pricing__price {
    color: var(--warm-white);
    justify-self: start;
}

.sg-kav-pricing__hybrid-list .sg-kav-pricing__price em {
    color: var(--mocha-light);
}

.sg-kav-pricing__hybrid-note {
    grid-column: 1 / -1;
    margin: 14px 0 0;
    text-align: right;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: var(--mocha-light);
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .sg-kav-pricing__hybrid { padding: 32px 24px; }
    .sg-kav-pricing__hybrid-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .sg-kav-pricing__hybrid-head {
        border-right: 0;
        border-bottom: 1px solid rgba(242, 232, 221, 0.15);
        padding-right: 0;
        padding-bottom: 20px;
    }
    .sg-kav-pricing__hybrid-list li {
        grid-template-columns: 1fr auto;
        gap: 10px;
    }
    .sg-kav-pricing__hybrid-list .sg-kav-pricing__dash { display: none; }
    .sg-kav-pricing__hybrid-list .sg-kav-pricing__name {
        justify-self: start;
        font-size: 1rem;
    }
    .sg-kav-pricing__hybrid-list .sg-kav-pricing__price {
        font-size: 1.1rem;
    }
    .sg-kav-pricing__hybrid-note { text-align: left; }
}

/* ─── PROCESS — 4 steps ─── */
.sg-kav-process {
    padding: var(--section-py) 0;
    background: var(--vanilla-light);
    position: relative;
    overflow: hidden;
}

.sg-kav-process::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(130, 111, 95, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.sg-kav-process__header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.sg-kav-process__header p {
    margin-top: 16px;
    font-size: 1rem;
    color: var(--mocha-light);
    font-weight: 300;
}

.sg-kav-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.sg-kav-process__step {
    background: var(--warm-white);
    border: 1px solid rgba(56, 54, 36, 0.04);
    border-radius: var(--radius-card);
    padding: 28px 24px 30px;
    text-align: left;
    transition: transform var(--duration-md) var(--ease-out),
                box-shadow var(--duration-md) var(--ease-out);
    position: relative;
}

.sg-kav-process__step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(56, 54, 36, 0.08);
}

.sg-kav-process__thumb {
    border-radius: 14px;
    aspect-ratio: 4 / 3;
    margin-bottom: 20px;
}

.sg-kav-process__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sg-kav-process__num {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    color: var(--smoked-mocha);
    display: inline-block;
    margin-bottom: 8px;
}

.sg-kav-process__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-thyme);
}

.sg-kav-process__desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--smoked-mocha);
    font-weight: 300;
}

/* ─── GALLERY — editorial masonry ─── */
.sg-kav-gallery {
    padding: var(--section-py) 0;
}

.sg-kav-gallery__header {
    text-align: center;
    margin-bottom: 56px;
}

.sg-kav-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 14px;
}

.sg-kav-gallery__item {
    position: relative;
    overflow: hidden;
}

.sg-kav-gallery__item--wide {
    grid-column: span 2;
}

.sg-kav-gallery__img-wrap {
    border-radius: var(--radius-img);
    height: 100%;
    width: 100%;
}

.sg-kav-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── FORM SECTION ─── */
.sg-kav-form-section {
    padding: var(--section-py) 0;
    background: var(--vanilla-light);
    position: relative;
    overflow: hidden;
}

.sg-kav-form-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(130, 111, 95, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.sg-kav-form-section__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.sg-kav-form-section__intro {
    font-size: 1rem;
    line-height: 1.72;
    color: var(--smoked-mocha);
    font-weight: 300;
    max-width: 460px;
    margin: 18px 0 32px;
}

.sg-kav-form-section__quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sg-kav-form-section__quick-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--warm-white);
    border: 1px solid rgba(56, 54, 36, 0.06);
    border-radius: 18px;
    text-decoration: none;
    transition: transform var(--duration-sm) var(--ease-out),
                box-shadow var(--duration-sm) var(--ease-out),
                border-color var(--duration-sm) var(--ease-out);
}

.sg-kav-form-section__quick-card:hover {
    transform: translateX(4px);
    border-color: rgba(130, 111, 95, 0.2);
    box-shadow: 0 10px 28px rgba(56, 54, 36, 0.06);
}

.sg-kav-form-section__quick-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--mocha-light), var(--smoked-mocha));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sg-kav-form-section__quick-icon svg {
    width: 20px;
    height: 20px;
    color: var(--warm-white);
    fill: none;
}

.sg-kav-form-section__quick-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sg-kav-form-section__quick-label {
    font-family: var(--font-ui);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mocha-light);
}

.sg-kav-form-section__quick-value {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--dark-thyme);
    font-weight: 400;
}

.sg-kav-form-section__form {
    background: var(--warm-white);
    border: 1px solid rgba(56, 54, 36, 0.07);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 10px 40px rgba(56, 54, 36, 0.06);
}

.sg-kav-form-section__fallback {
    color: var(--mocha-light);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ─── CF7 form styling (duplicated from contact.css for conditional-load isolation) ─── */
.sg-form {
    width: 100%;
}

.sg-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.sg-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
}

.sg-form__field--full {
    grid-column: span 2;
}

.sg-form__label {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dark-thyme);
}

.sg-form .wpcf7-form-control-wrap {
    display: block;
}

.sg-form input[type="text"],
.sg-form input[type="email"],
.sg-form input[type="tel"],
.sg-form input[type="url"],
.sg-form input[type="number"],
.sg-form input[type="date"],
.sg-form select,
.sg-form textarea {
    display: block;
    width: 100%;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--dark-thyme);
    padding: 12px 14px;
    border: 1px solid rgba(56, 54, 36, 0.14);
    border-radius: 12px;
    background: var(--vanilla-light);
    transition: border-color var(--duration-sm) var(--ease-out),
                background-color var(--duration-sm) var(--ease-out),
                box-shadow var(--duration-sm) var(--ease-out);
}

.sg-form input::placeholder,
.sg-form textarea::placeholder {
    color: rgba(130, 111, 95, 0.55);
    font-weight: 300;
}

.sg-form input:focus,
.sg-form select:focus,
.sg-form textarea:focus {
    outline: none;
    border-color: var(--smoked-mocha);
    background: var(--warm-white);
    box-shadow: 0 0 0 3px rgba(130, 111, 95, 0.1);
}

.sg-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23826f5f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 38px;
}

.sg-form textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.sg-form__consent {
    margin-top: 4px;
}

.sg-form__consent .wpcf7-list-item {
    margin: 0;
    display: block;
}

.sg-form__consent .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.sg-form__consent .wpcf7-list-item-label {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--smoked-mocha);
}

.sg-form__consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--smoked-mocha);
    cursor: pointer;
    flex-shrink: 0;
}

.sg-form__submit {
    margin-top: 8px;
}

.sg-form__btn,
.sg-form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: var(--dark-thyme);
    color: var(--vanilla-cloud);
    border: 0;
    border-radius: var(--radius-btn);
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color var(--duration-sm) var(--ease-out),
                transform var(--duration-sm) var(--ease-out),
                box-shadow var(--duration-sm) var(--ease-out);
}

.sg-form__btn:hover,
.sg-form input[type="submit"]:hover {
    background: var(--smoked-mocha);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(130, 111, 95, 0.3);
}

.sg-form .wpcf7-not-valid-tip {
    display: block;
    margin-top: 4px;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    color: #b85c42;
    letter-spacing: 0.02em;
}

.sg-form input.wpcf7-not-valid,
.sg-form select.wpcf7-not-valid,
.sg-form textarea.wpcf7-not-valid {
    border-color: rgba(184, 92, 66, 0.5);
    background: rgba(184, 92, 66, 0.04);
}

.sg-form .wpcf7-response-output {
    grid-column: span 2;
    margin: 18px 0 0 !important;
    padding: 14px 18px !important;
    border: 1px solid rgba(56, 54, 36, 0.12) !important;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--dark-thyme);
    background: var(--vanilla-light);
}

.sg-form form.sent .wpcf7-response-output {
    background: rgba(174, 183, 154, 0.18) !important;
    border-color: rgba(174, 183, 154, 0.5) !important;
    color: var(--thyme-light);
}

.sg-form form.invalid .wpcf7-response-output,
.sg-form form.failed .wpcf7-response-output {
    background: rgba(184, 92, 66, 0.08) !important;
    border-color: rgba(184, 92, 66, 0.3) !important;
    color: #8a3f2a;
}

.sg-form .wpcf7-spinner {
    margin-left: 12px;
}

/* ─── FAQ ─── */
.sg-kav-faq {
    padding: var(--section-py) 0;
    background: var(--vanilla-cloud);
}

.sg-kav-faq__inner {
    max-width: 820px;
}

.sg-kav-faq__header {
    text-align: center;
    margin-bottom: 54px;
}

.sg-kav-faq__item {
    border-bottom: 1px solid rgba(56, 54, 36, 0.08);
    overflow: hidden;
}

.sg-kav-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark-thyme);
    transition: color var(--duration-sm);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.sg-kav-faq__question:hover {
    color: var(--smoked-mocha);
}

.sg-kav-faq__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(56, 54, 36, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-out);
}

.sg-kav-faq__icon svg {
    stroke: var(--smoked-mocha);
    transition: transform 0.4s var(--ease-out);
}

.sg-kav-faq__item.is-active .sg-kav-faq__icon {
    background: var(--smoked-mocha);
    border-color: var(--smoked-mocha);
}

.sg-kav-faq__item.is-active .sg-kav-faq__icon svg {
    stroke: var(--warm-white);
    transform: rotate(45deg);
}

.sg-kav-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-md) var(--ease-out), padding var(--duration-md) ease;
}

.sg-kav-faq__item.is-active .sg-kav-faq__answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.sg-kav-faq__answer p {
    font-size: 0.93rem;
    line-height: 1.72;
    color: var(--smoked-mocha);
    font-weight: 300;
}

/* ─── LOCATIONS ─── */
.sg-kav-locations {
    padding: var(--section-py) 0;
}

.sg-kav-locations__header {
    text-align: center;
    margin-bottom: 56px;
}

.sg-kav-locations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sg-kav-loc {
    background: var(--warm-white);
    border-radius: 28px;
    border: 1px solid rgba(56, 54, 36, 0.04);
    transition: transform var(--duration-md) var(--ease-out),
                box-shadow var(--duration-md) var(--ease-out);
    overflow: hidden;
}

.sg-kav-loc:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(56, 54, 36, 0.06);
}

.sg-kav-loc__map {
    height: 200px;
    overflow: hidden;
}

.sg-kav-loc__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.6) contrast(1.1);
    transition: filter 0.4s ease;
}

.sg-kav-loc:hover .sg-kav-loc__map iframe {
    filter: saturate(1);
}

.sg-kav-loc__body {
    padding: 32px 34px;
}

.sg-kav-loc__badge {
    display: inline-block;
    font-family: var(--font-ui);
    padding: 6px 16px;
    border-radius: var(--radius-btn);
    background: rgba(130, 111, 95, 0.1);
    color: var(--smoked-mocha);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sg-kav-loc h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.sg-kav-loc p {
    font-size: 0.88rem;
    color: var(--mocha-light);
    line-height: 1.6;
}

/* ─── CTA BANNER ─── */
.sg-kav-cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--mocha-dark) 0%, var(--smoked-mocha) 50%, var(--mocha-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sg-kav-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.sg-kav-cta-banner__inner {
    position: relative;
    z-index: 1;
}

.sg-kav-cta-banner h2 {
    color: var(--warm-white);
    margin-bottom: 16px;
}

.sg-kav-cta-banner h2 em {
    color: var(--vanilla-cloud);
}

.sg-kav-cta-banner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.sg-kav-cta-banner .sg-btn--white {
    padding: 18px 42px;
    font-weight: 600;
}

.sg-kav-cta-banner .sg-btn--white:hover {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* ─── KEYFRAMES ─── */
@keyframes sg-kav-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes sg-kav-fade-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes sg-kav-draw-vertical {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes sg-kav-clip-reveal {
    from { opacity: 0; clip-path: inset(100% 0 0 0); transform: scale(1.04); }
    to { opacity: 1; clip-path: inset(0 0 0 0); transform: scale(1); }
}

@keyframes sg-kav-stamp-in {
    from { opacity: 0; transform: scale(0.7) rotate(-15deg); }
    to { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes sg-kav-stamp-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes sg-kav-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1100px) {
    .sg-kav-benefits__grid { grid-template-columns: repeat(2, 1fr); }
    .sg-kav-process__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .sg-kav-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 240px;
    }
    .sg-kav-gallery__item--wide { grid-column: auto; }
}

@media (max-width: 960px) {
    .sg-kav-hero {
        padding-top: 130px;
        padding-bottom: 70px;
    }
    .sg-kav-hero__inner {
        grid-template-columns: 1fr;
        gap: 50px;
        min-height: auto;
    }
    .sg-kav-hero__media { order: -1; height: 58vh; max-height: 520px; min-height: 360px; }
    .sg-kav-hero__content { padding: 0; max-width: 100%; }
    .sg-kav-hero__line { display: none; }
    .sg-kav-hero__decor { display: none; }
    .sg-kav-hero__h1-a, .sg-kav-hero__h1-b { font-size: clamp(2.4rem, 9vw, 3.4rem); }
    .sg-kav-hero__portrait { border-radius: 22px; }
    .sg-kav-hero__stamp { width: 86px; height: 86px; bottom: -20px; left: -20px; }

    .sg-kav-what__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sg-kav-what__media { order: -1; }
    .sg-kav-what__img-wrap { aspect-ratio: auto; }
    .sg-kav-what__img { height: auto; }

    .sg-kav-program {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 70px;
    }
    .sg-kav-program--reverse .sg-kav-program__media { order: 0; }
    .sg-kav-program__media { order: -1; }

    .sg-kav-pricing__grid { grid-template-columns: 1fr; gap: 20px; }
    .sg-kav-pricing__panel { padding: 36px 28px; }

    .sg-kav-form-section__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sg-kav-locations__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .sg-kav-what__counters { gap: 14px; }
    .sg-kav-what__counter-num { font-size: 1.6rem; }
    .sg-kav-what__counter-label { font-size: 0.6rem; letter-spacing: 0.1em; }

    .sg-kav-benefits__grid { grid-template-columns: 1fr; gap: 14px; }
    .sg-kav-benefit {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "icon title"
            "desc desc";
        column-gap: 16px;
        row-gap: 8px;
        align-items: center;
        padding: 22px 22px;
    }
    .sg-kav-benefit__icon {
        grid-area: icon;
        margin: 0;
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }
    .sg-kav-benefit__icon svg { width: 22px; height: 22px; }
    .sg-kav-benefit__title {
        grid-area: title;
        margin: 0;
        font-size: 1.1rem;
    }
    .sg-kav-benefit__desc {
        grid-area: desc;
        margin-top: 2px;
    }
    .sg-kav-process__grid { grid-template-columns: 1fr; }

    .sg-kav-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .sg-kav-gallery__item--wide { grid-column: span 2; }

    .sg-form__grid { grid-template-columns: 1fr; }
    .sg-form__field--full { grid-column: auto; }
    .sg-form .wpcf7-response-output { grid-column: auto; }

    .sg-kav-form-section__form { padding: 28px 22px; }

    .sg-kav-program__for { padding: 16px 18px; }

    .sg-kav-pricing__row {
        grid-template-columns: 1fr auto;
        gap: 10px;
    }
    .sg-kav-pricing__dash { display: none; }
    .sg-kav-pricing__name { justify-self: start; font-size: 1rem; }
    .sg-kav-pricing__price { font-size: 1.1rem; }

    .sg-kav-cta-banner { padding: 70px 0; }
}

@media (max-width: 480px) {
    .sg-kav-hero__meta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 16px;
    }
    .sg-kav-hero__meta li { padding: 8px 16px; }
    .sg-kav-hero__meta li + li::before { display: none; }

    .sg-kav-hero__actions { flex-direction: column; align-items: stretch; }
    .sg-kav-hero__actions .sg-btn { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .sg-kav-marquee__track,
    .sg-kav-hero__stamp-svg { animation: none !important; }
    .sg-kav-hero__line { animation: none; transform: scaleY(1); }
}

/* ─── REGIONS ─── */
.sg-kav-regions {
    padding: var(--section-py) 0;
    background: var(--vanilla-cloud);
}
.sg-kav-regions__header { text-align: center; margin-bottom: 48px; }
.sg-kav-regions__list {
    list-style: none; padding: 0; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
    max-width: 960px;
}
.sg-kav-regions__item {
    display: flex; align-items: center; gap: 18px;
    padding: 20px 22px; background: var(--warm-white);
    border: 1px solid rgba(56, 54, 36, 0.05); border-radius: 18px;
    transition: transform var(--duration-sm) var(--ease-out),
                box-shadow var(--duration-sm) var(--ease-out),
                border-color var(--duration-sm) var(--ease-out);
}
.sg-kav-regions__item:hover {
    transform: translateY(-4px);
    border-color: rgba(130, 111, 95, 0.2);
    box-shadow: 0 12px 32px rgba(56, 54, 36, 0.06);
}
.sg-kav-regions__num {
    font-family: var(--font-display);
    font-weight: 600; font-size: 0.78rem;
    letter-spacing: 0.16em; color: var(--smoked-mocha);
    flex-shrink: 0;
}
.sg-kav-regions__name {
    font-family: var(--font-display);
    font-size: 1.1rem; color: var(--dark-thyme);
}
.sg-kav-pricing__grid--single {
    grid-template-columns: 1fr;
    max-width: 640px; margin-left: auto; margin-right: auto;
}
@media (max-width: 900px) { .sg-kav-regions__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sg-kav-regions__list { grid-template-columns: 1fr; } }

/* ─── BENEFITS — target audience list ─── */
.sg-kav-benefits__intro {
    font-size: 1rem;
    color: var(--mocha-light);
    font-weight: 300;
    margin-top: 16px;
}
.sg-kav-benefits__target {
    list-style: none;
    margin: 28px auto 0;
    padding: 0;
    max-width: 540px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
    text-align: left;
}
.sg-kav-benefits__target li {
    position: relative;
    padding-left: 24px;
    font-family: var(--font-ui);
    font-size: 0.86rem;
    line-height: 1.5;
    color: var(--dark-thyme);
    letter-spacing: 0.01em;
}
.sg-kav-benefits__target-dot {
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--smoked-mocha);
    box-shadow: 0 0 0 4px rgba(130, 111, 95, 0.08);
}
@media (max-width: 720px) {
    .sg-kav-benefits__target { grid-template-columns: 1fr; max-width: 380px; gap: 10px; }
}

/* ─── COMBOS — five service cards ─── */
.sg-kav-combos {
    padding: calc(var(--section-py) * 0.85) 0;
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--vanilla-light) 100%);
    position: relative;
    overflow: hidden;
}
.sg-kav-combos::before {
    content: '';
    position: absolute;
    top: -180px; right: -180px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(174, 183, 154, 0.22) 0%, transparent 70%);
    pointer-events: none;
}
.sg-kav-combos__inner { position: relative; z-index: 1; }
.sg-kav-combos__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}
.sg-kav-combos__header p {
    font-size: 1rem;
    color: var(--mocha-light);
    font-weight: 300;
    margin-top: 16px;
    line-height: 1.65;
}
.sg-kav-combos__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.sg-kav-combo {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 32px 24px 28px;
    background: var(--warm-white);
    border: 1px solid rgba(56, 54, 36, 0.06);
    border-radius: var(--radius-card);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform var(--duration-md) var(--ease-out),
                border-color var(--duration-md) var(--ease-out),
                box-shadow var(--duration-md) var(--ease-out);
}
.sg-kav-combo::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--smoked-mocha) 0%, var(--dark-thyme) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-md) var(--ease-out);
}
.sg-kav-combo:hover {
    transform: translateY(-6px);
    border-color: rgba(130, 111, 95, 0.2);
    box-shadow: 0 24px 60px rgba(56, 54, 36, 0.08);
}
.sg-kav-combo:hover::after { transform: scaleX(1); }
.sg-kav-combo:hover .sg-kav-combo__arrow { transform: translateX(4px); color: var(--smoked-mocha); }
.sg-kav-combo__num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--mocha-light);
    letter-spacing: 0.05em;
}
.sg-kav-combo__icon {
    width: 48px; height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--vanilla-light);
    color: var(--smoked-mocha);
    margin: 2px 0 6px;
}
.sg-kav-combo__icon svg { width: 26px; height: 26px; }
.sg-kav-combo__name {
    font-family: var(--font-display);
    font-size: 1.18rem;
    color: var(--dark-thyme);
    margin: 0;
    line-height: 1.2;
}
.sg-kav-combo__sub {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--mocha-light);
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}
.sg-kav-combo__arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--mocha-light);
    margin-top: 8px;
    transition: transform var(--duration-md) var(--ease-out), color var(--duration-md) var(--ease-out);
}
@media (max-width: 1100px) { .sg-kav-combos__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .sg-kav-combos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .sg-kav-combos__grid { grid-template-columns: 1fr; } }

/* ─── PHILOSOPHY — pullquote block ─── */
.sg-kav-philosophy {
    position: relative;
    padding: calc(var(--section-py) * 1.1) 0;
    background: var(--dark-thyme);
    color: var(--warm-white);
    overflow: hidden;
}
.sg-kav-philosophy__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(224, 210, 190, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(130, 111, 95, 0.2) 0%, transparent 60%);
    pointer-events: none;
}
.sg-kav-philosophy__bg::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(224, 210, 190, 0.18) 50%, transparent 100%);
}
.sg-kav-philosophy__inner {
    position: relative;
    z-index: 1;
}
.sg-kav-philosophy__content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.sg-kav-philosophy__eyebrow {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(224, 210, 190, 0.7);
    margin-bottom: 20px;
}
.sg-kav-philosophy__title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.6vw, 2.9rem);
    line-height: 1.15;
    color: var(--warm-white);
    margin: 0 0 36px;
    font-weight: 400;
}
.sg-kav-philosophy__title em {
    font-style: italic;
    color: var(--vanilla-cloud);
}
.sg-kav-philosophy__quote {
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
}
.sg-kav-philosophy__quote p {
    font-size: 1.12rem;
    line-height: 1.75;
    color: rgba(255, 252, 248, 0.88);
    font-weight: 300;
    margin: 0 0 18px;
}
.sg-kav-philosophy__closer {
    font-family: var(--font-display);
    font-size: 1.25rem !important;
    line-height: 1.5 !important;
    color: var(--vanilla-cloud) !important;
    margin-top: 22px !important;
}
.sg-kav-philosophy__closer em {
    font-style: italic;
}
.sg-kav-philosophy__mark {
    display: block;
    font-size: 1.6rem;
    color: rgba(224, 210, 190, 0.5);
    margin-top: 26px;
    letter-spacing: 0.2em;
}
@media (max-width: 720px) {
    .sg-kav-philosophy { padding: 80px 0 90px; }
    .sg-kav-philosophy__quote p { font-size: 1rem; }
    .sg-kav-philosophy__closer { font-size: 1.1rem !important; }
}
