:root {
    --green: #7ccdc8;
    --green-deep: #7ccdc8;
    --hero-teal: #7ccdc8;
    --card: #fbfbf8;
    --accent: #f7e797;
    --text: #111111;
    --muted: #8a8a8a;
    --line: rgba(17, 17, 17, 0.12);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    --radius: 32px;
    --shell-pad: 8px;
    --footer-reveal-height: clamp(420px, 58svh, 620px);
    --font:
        "Manrope", "Inter", "Plus Jakarta Sans", system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 2147483646;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    background:
        radial-gradient(circle at 24% 22%, rgba(124, 205, 200, 0.46), transparent 34%),
        radial-gradient(circle at 76% 70%, rgba(223, 255, 87, 0.35), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(247, 231, 151, 0.34));
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition:
        opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 420ms cubic-bezier(0.22, 1, 0.36, 1),
        backdrop-filter 420ms cubic-bezier(0.22, 1, 0.36, 1),
        -webkit-backdrop-filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.page-transition-active body::before {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(14px) saturate(1.08);
    -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

@media (prefers-reduced-motion: reduce) {
    body::before {
        transition: none;
    }
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--green);
    overflow-x: hidden;
}

body {
    min-height: 100%;
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--green);
    overflow-x: clip;
}

body.menu-is-open {
    overflow: hidden;
}

main {
    background: var(--green);
    overflow-x: clip;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

h1,
h2 {
    font-family: "Geologica", var(--font);
    font-weight: 800;
}

:focus-visible {
    outline: 3px solid rgba(46, 97, 35, 0.35);
    outline-offset: 4px;
}

.hero-shell {
    position: relative;
    z-index: 1;
    padding: var(--shell-pad);
    padding-bottom: calc(var(--footer-reveal-height) + var(--shell-pad));
    overflow: visible;
    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(247, 231, 151, 0.08),
            transparent 36%
        ),
        #333;
}

.bento-shell {
    position: relative;
    z-index: 8;
    min-height: 100svh;
    margin-top: 0;
    padding: var(--shell-pad) 0 0;
}

body.menu-is-open .hero-shell {
    z-index: 10000;
}

body.menu-is-open .bento-shell {
    z-index: 0;
}

.bento-card {
    width: min(100%, 1800px);
    min-height: calc(100svh - 16px);
    margin: 0 auto;
    padding: clamp(34px, 4.8vw, 72px);
    padding-bottom: clamp(64px, 7vw, 116px);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(72px);
    transition:
        opacity 320ms ease,
        transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-page-card {
    padding: clamp(18px, 2.6vw, 40px);
    padding-bottom: clamp(48px, 6vw, 88px);
}

.bento-overview {
    min-height: calc(100svh - 16px - clamp(68px, 9.6vw, 144px));
    display: flex;
    flex-direction: column;
}

.bento-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    animation: bento-spring-in 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 620ms ease,
        transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.scroll-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal[data-reveal="soft"] {
    transform: translateY(14px);
}

.scroll-reveal[data-reveal="lift"] {
    transform: translateY(28px) scale(0.992);
}

.scroll-reveal[data-reveal="lift"].is-revealed {
    transform: translateY(0) scale(1);
}

@keyframes bento-spring-in {
    0% {
        opacity: 0;
        transform: translateY(72px);
    }

    72% {
        opacity: 1;
        transform: translateY(-6px);
    }

    88% {
        transform: translateY(3px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-heading {
    max-width: 780px;
    margin-bottom: clamp(28px, 4vw, 52px);
}

.bento-heading p {
    margin: 0 0 16px;
    color: var(--green);
    font-size: clamp(11px, 0.85vw, 14px);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bento-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(38px, 4.2vw, 62px);
    line-height: 1.03;
    letter-spacing: 0;
}

.bento-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 1fr);
    gap: clamp(18px, 1.7vw, 28px);
}

.service-info-section {
    position: relative;
    min-height: clamp(740px, 82svh, 900px);
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(380px, 0.98fr) minmax(
            320px,
            0.96fr
        );
    overflow: hidden;
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(124, 205, 200, 0.14),
            transparent 28%
        ),
        linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 42%),
        #fbfbf8;
    box-shadow: inset 0 0 0 1px rgba(46, 97, 35, 0.08);
}

.service-info-section::before,
.service-info-section::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(46, 97, 35, 0.08);
}

.service-info-section::before {
    left: 38.5%;
}

.service-info-section::after {
    left: 67%;
}

.service-info-intro {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(44px, 4.8vw, 72px);
}

.service-info-intro > p {
    margin: 0 0 clamp(28px, 3.6vw, 46px);
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.service-info-intro h2 {
    max-width: 560px;
    margin: 0;
    color: #171717;
    font-family: "Geologica", var(--font);
    font-size: clamp(40px, 3.2vw, 54px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
}

.service-info-intro > span {
    display: block;
    max-width: 560px;
    margin-top: clamp(26px, 3.2vw, 42px);
    color: rgba(23, 23, 23, 0.58);
    font-size: clamp(16px, 1.18vw, 19px);
    line-height: 1.72;
    font-weight: 700;
}

.service-info-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: clamp(58px, 7vw, 96px);
    border-top: 1px solid rgba(46, 97, 35, 0.1);
}

.service-info-metrics article {
    min-height: 146px;
    padding-top: 28px;
}

.service-info-metrics article + article {
    padding-left: clamp(26px, 3vw, 44px);
    border-left: 1px solid rgba(46, 97, 35, 0.1);
}

.service-info-metrics small {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(17, 17, 17, 0.68);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-info-metrics small::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hero-teal);
}

.service-info-metrics strong {
    display: block;
    margin-top: 28px;
    color: var(--green);
    font-size: clamp(24px, 1.72vw, 30px);
    line-height: 1.05;
    font-weight: 500;
}

.service-info-metrics em {
    display: block;
    margin-top: 10px;
    color: rgba(23, 23, 23, 0.54);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}

.service-info-panels {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
}

.service-info-panels article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(44px, 4.2vw, 70px) clamp(34px, 3.2vw, 52px);
}

.service-info-panels article + article {
    border-top: 1px solid rgba(46, 97, 35, 0.08);
}

.service-info-panels span {
    display: block;
    height: 38px;
    color: rgba(124, 205, 200, 0.34);
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: 0.7;
}

.service-info-panels p {
    max-width: 520px;
    margin: 18px 0 0;
    color: #171717;
    font-size: clamp(17px, 1.34vw, 21px);
    line-height: 1.5;
    font-weight: 600;
}

.service-info-panels small {
    display: block;
    width: fit-content;
    margin-top: 32px;
    padding-top: 12px;
    border-top: 2px solid var(--hero-teal);
    color: rgba(23, 23, 23, 0.56);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}

.service-info-portrait {
    position: relative;
    z-index: 1;
    margin: 0;
    overflow: hidden;
    min-height: 100%;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 58% 26%,
            rgba(247, 231, 151, 0.42),
            transparent 28%
        ),
        linear-gradient(180deg, rgba(124, 205, 200, 0.08), transparent 58%);
}

.service-info-portrait::before,
.service-info-portrait::after {
    content: "";
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.service-info-portrait::before {
    left: 7%;
    top: 5%;
    width: 34%;
    height: 70%;
    border: 1px solid rgba(46, 97, 35, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.24);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.service-info-portrait::after {
    right: -18%;
    top: -9%;
    width: 60%;
    height: 118%;
    border-radius: 38px 0 0 38px;
    background: linear-gradient(
        180deg,
        rgba(124, 205, 200, 0.88),
        rgba(247, 231, 151, 0.22)
    );
    mix-blend-mode: multiply;
}

.service-info-portrait img {
    position: absolute;
    right: -28%;
    top: 0;
    bottom: auto;
    width: 136%;
    height: 100%;
    object-fit: cover;
    object-position: 66% 50%;
    filter: saturate(0.98) contrast(1.02);
}

.service-info-section + .service-depth-section {
    margin-top: clamp(72px, 9vw, 148px);
}

.service-depth-section {
    position: relative;
    overflow: hidden;
    padding: clamp(44px, 5vw, 78px);
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 82% 8%,
            rgba(124, 205, 200, 0.18),
            transparent 28%
        ),
        linear-gradient(135deg, rgba(255, 255, 255, 0.74), transparent 52%),
        #fbfbf8;
    box-shadow: inset 0 0 0 1px rgba(46, 97, 35, 0.08);
}

.service-depth-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            transparent calc(50% - 1px),
            rgba(46, 97, 35, 0.07) calc(50% - 1px),
            rgba(46, 97, 35, 0.07) 50%,
            transparent 50%
        ),
        linear-gradient(
            180deg,
            transparent 52%,
            rgba(46, 97, 35, 0.07) 52%,
            transparent calc(52% + 1px)
        );
    pointer-events: none;
}

.service-depth-header,
.service-depth-grid {
    position: relative;
    z-index: 1;
}

.service-depth-header {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
    column-gap: clamp(38px, 6vw, 96px);
    row-gap: 22px;
    align-items: end;
    margin-bottom: clamp(42px, 5.4vw, 78px);
}

.service-depth-header p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.service-depth-header h2 {
    max-width: 780px;
    margin: 0;
    color: #171717;
    font-family: "Geologica", var(--font);
    font-size: clamp(34px, 2.8vw, 46px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: 0;
}

.service-depth-header span {
    display: block;
    max-width: 720px;
    color: rgba(23, 23, 23, 0.62);
    font-size: clamp(15px, 1.06vw, 18px);
    line-height: 1.72;
    font-weight: 700;
}

.service-depth-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) repeat(3, minmax(0, 0.72fr));
    gap: clamp(16px, 1.45vw, 24px);
}

.service-depth-image,
.service-depth-card,
.service-depth-grade-map {
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: inset 0 0 0 1px rgba(46, 97, 35, 0.08);
}

.service-depth-image {
    position: relative;
    grid-row: span 2;
    min-height: 470px;
    margin: 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 24% 18%,
            rgba(247, 231, 151, 0.34),
            transparent 30%
        ),
        rgba(124, 205, 200, 0.12);
}

.service-depth-image::before,
.service-depth-image::after {
    content: "";
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.service-depth-image::before {
    left: 7%;
    top: 7%;
    width: 30%;
    height: 68%;
    border: 1px solid rgba(46, 97, 35, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.24);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.service-depth-image::after {
    left: -18%;
    bottom: -12%;
    width: 68%;
    height: 48%;
    border-radius: 42px;
    background: linear-gradient(
        90deg,
        rgba(124, 205, 200, 0.64),
        rgba(247, 231, 151, 0.28)
    );
    mix-blend-mode: multiply;
}

.service-depth-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% 50%;
    filter: saturate(0.98) contrast(1.02);
}

.service-depth-card span,
.service-depth-grade-map small {
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-depth-card {
    min-height: 220px;
    padding: clamp(24px, 2.2vw, 34px);
}

.service-depth-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(124, 205, 200, 0.2);
}

.service-depth-card h3 {
    margin: 26px 0 0;
    color: #171717;
    font-size: clamp(19px, 1.42vw, 24px);
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: 0;
}

.service-depth-card p,
.service-depth-grade-map p {
    margin: 14px 0 0;
    color: rgba(23, 23, 23, 0.62);
    font-size: 14px;
    line-height: 1.62;
    font-weight: 700;
}

.service-depth-card-accent {
    background:
        radial-gradient(
            circle at 84% 8%,
            rgba(247, 231, 151, 0.52),
            transparent 34%
        ),
        rgba(124, 205, 200, 0.18);
}

.service-depth-grade-map {
    grid-column: span 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
}

.service-depth-grade-map article {
    min-height: 210px;
    padding: clamp(24px, 2.2vw, 34px);
}

.service-depth-grade-map article + article {
    border-left: 1px solid rgba(46, 97, 35, 0.08);
}

.service-depth-section + .service-outcomes-section {
    margin-top: clamp(72px, 9vw, 148px);
}

.service-outcomes-section {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(20px, 2vw, 34px);
    padding: clamp(34px, 3.8vw, 58px);
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 18% 14%,
            rgba(124, 205, 200, 0.18),
            transparent 30%
        ),
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), transparent 50%),
        #fbfbf8;
    box-shadow: inset 0 0 0 1px rgba(46, 97, 35, 0.08);
}

.service-outcomes-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            transparent calc(41% - 1px),
            rgba(46, 97, 35, 0.07) calc(41% - 1px),
            rgba(46, 97, 35, 0.07) 41%,
            transparent 41%
        ),
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(46, 97, 35, 0.06) 50%,
            transparent calc(50% + 1px)
        );
    pointer-events: none;
}

.service-outcomes-copy,
.service-outcomes-lists {
    position: relative;
    z-index: 1;
}

.service-outcomes-copy {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.service-outcomes-copy > p {
    margin: 0;
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.service-outcomes-copy h2 {
    max-width: 620px;
    margin: clamp(28px, 3.6vw, 48px) 0 0;
    color: #171717;
    font-family: "Geologica", var(--font);
    font-size: clamp(32px, 2.6vw, 44px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: 0;
}

.service-outcomes-copy > span {
    display: block;
    max-width: 560px;
    margin-top: 24px;
    color: rgba(23, 23, 23, 0.62);
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.7;
    font-weight: 700;
}

.service-outcomes-image {
    position: relative;
    min-height: 320px;
    margin-top: clamp(44px, 5vw, 72px);
    overflow: hidden;
    border-radius: 26px;
    background: rgba(124, 205, 200, 0.14);
    box-shadow: inset 0 0 0 1px rgba(46, 97, 35, 0.08);
    isolation: isolate;
}

.service-outcomes-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% 50%;
    filter: saturate(0.96) contrast(1.02);
}

.service-outcomes-lists {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 1.45vw, 24px);
}

.service-outcomes-lists article {
    min-height: 610px;
    padding: clamp(28px, 2.8vw, 44px);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: inset 0 0 0 1px rgba(46, 97, 35, 0.08);
}

.service-outcomes-lists article:nth-child(2) {
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(247, 231, 151, 0.46),
            transparent 32%
        ),
        rgba(124, 205, 200, 0.14);
}

.service-outcomes-lists small {
    display: block;
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-outcomes-lists ul {
    display: grid;
    gap: 20px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.service-outcomes-lists li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.service-outcomes-lists li span {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(124, 205, 200, 0.2);
    box-shadow: inset 0 0 0 1px rgba(46, 97, 35, 0.08);
}

.service-outcomes-lists li span::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 9px;
    width: 9px;
    height: 14px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(42deg);
}

.service-outcomes-lists p {
    margin: 2px 0 0;
    color: rgba(23, 23, 23, 0.66);
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.58;
    font-weight: 750;
}

.service-outcomes-section + .book-now-section {
    margin-top: clamp(72px, 9vw, 148px);
}

.mixanografiko-page {
    --mix-accent: #f7e797;
    --mix-lavender: #d9c4f8;
    --mix-green-soft: rgba(46, 97, 35, 0.14);
    --mix-accent-soft: rgba(247, 231, 151, 0.42);
    --mix-lavender-soft: rgba(217, 196, 248, 0.34);
}

.mixanografiko-page .service-info-section {
    background:
        radial-gradient(
            circle at 18% 18%,
            var(--mix-accent-soft),
            transparent 28%
        ),
        radial-gradient(
            circle at 84% 28%,
            var(--mix-lavender-soft),
            transparent 30%
        ),
        linear-gradient(90deg, rgba(255, 255, 255, 0.76), transparent 44%),
        #fbfbf8;
}

.mixanografiko-page .service-info-metrics small::before {
    background: var(--mix-accent);
}

.mixanografiko-page .service-info-panels span {
    color: rgba(217, 196, 248, 0.58);
}

.mixanografiko-page .service-info-panels small {
    border-top-color: var(--mix-accent);
}

.mixanografiko-page .service-info-portrait {
    background:
        radial-gradient(
            circle at 58% 26%,
            rgba(217, 196, 248, 0.38),
            transparent 30%
        ),
        linear-gradient(180deg, rgba(247, 231, 151, 0.16), transparent 58%);
}

.mixanografiko-page .service-info-portrait img {
    right: -12%;
    width: 122%;
    object-position: 58% 50%;
}

.mixanografiko-page .service-info-portrait::before,
.mixanografiko-page .service-info-portrait::after,
.mixanografiko-page .service-depth-image::before,
.mixanografiko-page .service-depth-image::after {
    display: none;
}

.mixanografiko-page .service-depth-image img {
    object-position: 50% 52%;
}

.mixanografiko-page .service-depth-section {
    background:
        radial-gradient(
            circle at 82% 8%,
            rgba(217, 196, 248, 0.3),
            transparent 30%
        ),
        radial-gradient(
            circle at 12% 72%,
            rgba(247, 231, 151, 0.34),
            transparent 34%
        ),
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), transparent 54%),
        #fbfbf8;
}

.mixanografiko-page .service-depth-image {
    background:
        radial-gradient(
            circle at 24% 18%,
            rgba(217, 196, 248, 0.26),
            transparent 32%
        ),
        rgba(247, 231, 151, 0.18);
}

.mixanografiko-page .service-depth-card span {
    background: rgba(247, 231, 151, 0.5);
}

.mixanografiko-page .service-depth-card-accent {
    background:
        radial-gradient(
            circle at 84% 8%,
            rgba(217, 196, 248, 0.48),
            transparent 34%
        ),
        rgba(247, 231, 151, 0.28);
}

.mixanografiko-page .service-outcomes-section {
    background:
        radial-gradient(
            circle at 18% 14%,
            rgba(247, 231, 151, 0.36),
            transparent 31%
        ),
        radial-gradient(
            circle at 90% 18%,
            rgba(217, 196, 248, 0.28),
            transparent 30%
        ),
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 52%),
        #fbfbf8;
}

.mixanografiko-page .service-outcomes-image {
    background: rgba(247, 231, 151, 0.18);
}

.mixanografiko-page .service-outcomes-image img {
    object-position: 46% 50%;
}

.mixanografiko-page .service-outcomes-lists article:nth-child(2) {
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(217, 196, 248, 0.5),
            transparent 32%
        ),
        rgba(247, 231, 151, 0.18);
}

.mixanografiko-page .service-outcomes-lists li span {
    background: rgba(247, 231, 151, 0.52);
}

.metaptyxiako-page {
    --postgrad-lavender: #d9c4f8;
    --postgrad-teal: #7ccdc8;
    --postgrad-sage: #a4c87e;
    --postgrad-green: #7ccdc8;
    --postgrad-lavender-soft: rgba(217, 196, 248, 0.38);
    --postgrad-teal-soft: rgba(124, 205, 200, 0.3);
    --postgrad-sage-soft: rgba(164, 200, 126, 0.32);
}

.metaptyxiako-page .service-info-section {
    background:
        radial-gradient(
            circle at 18% 18%,
            var(--postgrad-lavender-soft),
            transparent 30%
        ),
        radial-gradient(
            circle at 86% 28%,
            var(--postgrad-teal-soft),
            transparent 31%
        ),
        linear-gradient(90deg, rgba(255, 255, 255, 0.78), transparent 44%),
        #fbfbf8;
}

.metaptyxiako-page .service-info-metrics small::before {
    background: var(--postgrad-lavender);
}

.metaptyxiako-page .service-info-panels span {
    color: rgba(217, 196, 248, 0.6);
}

.metaptyxiako-page .service-info-panels small {
    border-top-color: var(--postgrad-teal);
}

.metaptyxiako-page .service-info-portrait {
    background:
        radial-gradient(
            circle at 58% 24%,
            var(--postgrad-teal-soft),
            transparent 32%
        ),
        linear-gradient(180deg, rgba(217, 196, 248, 0.18), transparent 58%);
}

.metaptyxiako-page .service-info-portrait::before,
.metaptyxiako-page .service-info-portrait::after,
.metaptyxiako-page .service-depth-image::before,
.metaptyxiako-page .service-depth-image::after {
    display: none;
}

.metaptyxiako-page .service-info-portrait img {
    object-position: 48% 50%;
}

.metaptyxiako-page .service-depth-section {
    background:
        radial-gradient(
            circle at 82% 8%,
            var(--postgrad-lavender-soft),
            transparent 31%
        ),
        radial-gradient(
            circle at 12% 74%,
            var(--postgrad-sage-soft),
            transparent 34%
        ),
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 54%),
        #fbfbf8;
}

.metaptyxiako-page .service-depth-image {
    background:
        radial-gradient(
            circle at 24% 18%,
            var(--postgrad-lavender-soft),
            transparent 32%
        ),
        rgba(124, 205, 200, 0.14);
}

.metaptyxiako-page .service-depth-image img {
    object-position: 50% 50%;
}

.metaptyxiako-page .service-depth-card span {
    background: rgba(217, 196, 248, 0.5);
}

.metaptyxiako-page .service-depth-card-accent {
    background:
        radial-gradient(
            circle at 84% 8%,
            rgba(124, 205, 200, 0.46),
            transparent 34%
        ),
        rgba(217, 196, 248, 0.24);
}

.metaptyxiako-page .service-outcomes-section {
    background:
        radial-gradient(
            circle at 18% 14%,
            rgba(217, 196, 248, 0.34),
            transparent 31%
        ),
        radial-gradient(
            circle at 90% 18%,
            rgba(124, 205, 200, 0.32),
            transparent 30%
        ),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 52%),
        #fbfbf8;
}

.metaptyxiako-page .service-outcomes-image {
    background: rgba(164, 200, 126, 0.18);
}

.metaptyxiako-page .service-outcomes-image img {
    object-position: 50% 48%;
}

.metaptyxiako-page .service-outcomes-lists article:nth-child(2) {
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(217, 196, 248, 0.48),
            transparent 32%
        ),
        rgba(124, 205, 200, 0.14);
}

.metaptyxiako-page .service-outcomes-lists li span {
    background: rgba(217, 196, 248, 0.5);
}

.meteggrafes-page {
    --transfer-blue: #86d0df;
    --transfer-sage: #a4c87e;
    --transfer-green: #2e6123;
    --transfer-blue-soft: rgba(134, 208, 223, 0.34);
    --transfer-sage-soft: rgba(164, 200, 126, 0.34);
    --transfer-green-soft: rgba(46, 97, 35, 0.18);
}

.meteggrafes-page .service-info-section {
    background:
        radial-gradient(
            circle at 14% 18%,
            var(--transfer-blue-soft),
            transparent 30%
        ),
        radial-gradient(
            circle at 86% 24%,
            var(--transfer-sage-soft),
            transparent 32%
        ),
        linear-gradient(90deg, rgba(255, 255, 255, 0.78), transparent 44%),
        #fbfbf8;
}

.meteggrafes-page .service-info-metrics small::before {
    background: var(--transfer-blue);
}

.meteggrafes-page .service-info-panels span {
    color: rgba(134, 208, 223, 0.58);
}

.meteggrafes-page .service-info-panels small {
    border-top-color: var(--transfer-blue);
}

.meteggrafes-page .service-info-portrait {
    background:
        radial-gradient(
            circle at 54% 24%,
            rgba(164, 200, 126, 0.3),
            transparent 31%
        ),
        linear-gradient(180deg, rgba(134, 208, 223, 0.16), transparent 60%);
}

.meteggrafes-page .service-info-portrait img {
    right: -16%;
    width: 126%;
    object-position: 52% 50%;
}

.meteggrafes-page .service-info-portrait::before,
.meteggrafes-page .service-info-portrait::after,
.meteggrafes-page .service-depth-image::before,
.meteggrafes-page .service-depth-image::after {
    display: none;
}

.meteggrafes-page .service-depth-section {
    background:
        radial-gradient(
            circle at 84% 10%,
            rgba(134, 208, 223, 0.28),
            transparent 30%
        ),
        radial-gradient(
            circle at 12% 74%,
            rgba(164, 200, 126, 0.34),
            transparent 34%
        ),
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 54%),
        #fbfbf8;
}

.meteggrafes-page .service-depth-image {
    background:
        radial-gradient(
            circle at 24% 18%,
            rgba(134, 208, 223, 0.24),
            transparent 32%
        ),
        rgba(164, 200, 126, 0.14);
}

.meteggrafes-page .service-depth-image img {
    object-position: 54% 50%;
}

.meteggrafes-page .service-depth-card span {
    background: rgba(134, 208, 223, 0.34);
}

.meteggrafes-page .service-depth-card-accent {
    background:
        radial-gradient(
            circle at 86% 10%,
            rgba(164, 200, 126, 0.44),
            transparent 34%
        ),
        rgba(134, 208, 223, 0.16);
}

.meteggrafes-page .service-depth-grade-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.meteggrafes-page .service-outcomes-section {
    background:
        radial-gradient(
            circle at 18% 14%,
            rgba(134, 208, 223, 0.28),
            transparent 31%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(164, 200, 126, 0.32),
            transparent 30%
        ),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 52%),
        #fbfbf8;
}

.meteggrafes-page .service-outcomes-image {
    background: rgba(134, 208, 223, 0.14);
}

.meteggrafes-page .service-outcomes-image img {
    object-position: 48% 50%;
}

.meteggrafes-page .service-outcomes-lists article:nth-child(2) {
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(164, 200, 126, 0.44),
            transparent 32%
        ),
        rgba(134, 208, 223, 0.16);
}

.meteggrafes-page .service-outcomes-lists li span {
    background: rgba(134, 208, 223, 0.46);
}

.diaxeirisi-page {
    --time-teal: #7ccdc8;
    --time-green: #2e6123;
    --time-leaf: #b8dd7a;
    --time-cream: #f7e797;
    --time-teal-soft: rgba(124, 205, 200, 0.38);
    --time-green-soft: rgba(46, 97, 35, 0.18);
    --time-leaf-soft: rgba(184, 221, 122, 0.34);
    --time-cream-soft: rgba(247, 231, 151, 0.36);
}

.diaxeirisi-page .service-info-section {
    background:
        radial-gradient(
            circle at 14% 18%,
            var(--time-teal-soft),
            transparent 29%
        ),
        radial-gradient(
            circle at 86% 24%,
            var(--time-leaf-soft),
            transparent 31%
        ),
        linear-gradient(90deg, rgba(255, 255, 255, 0.78), transparent 45%),
        #fbfbf8;
}

.diaxeirisi-page .service-info-metrics small::before {
    background: var(--time-leaf);
}

.diaxeirisi-page .service-info-panels span {
    color: rgba(46, 97, 35, 0.2);
}

.diaxeirisi-page .service-info-panels small {
    border-top-color: var(--time-leaf);
}

.diaxeirisi-page .service-info-portrait {
    background:
        radial-gradient(
            circle at 58% 24%,
            var(--time-leaf-soft),
            transparent 31%
        ),
        linear-gradient(180deg, rgba(124, 205, 200, 0.14), transparent 60%);
}

.diaxeirisi-page .service-info-portrait::before {
    border-color: rgba(46, 97, 35, 0.18);
    background: rgba(255, 255, 255, 0.2);
}

.diaxeirisi-page .service-info-portrait::after {
    background: linear-gradient(
        180deg,
        rgba(184, 221, 122, 0.76),
        rgba(124, 205, 200, 0.24)
    );
}

.diaxeirisi-page .service-depth-section {
    background:
        radial-gradient(
            circle at 82% 10%,
            var(--time-teal-soft),
            transparent 30%
        ),
        radial-gradient(
            circle at 12% 74%,
            var(--time-cream-soft),
            transparent 34%
        ),
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 54%),
        #fbfbf8;
}

.diaxeirisi-page .service-depth-image {
    background:
        radial-gradient(
            circle at 24% 18%,
            var(--time-leaf-soft),
            transparent 32%
        ),
        rgba(124, 205, 200, 0.12);
}

.diaxeirisi-page .service-depth-image::before {
    border-color: rgba(46, 97, 35, 0.14);
    background: rgba(247, 231, 151, 0.32);
}

.diaxeirisi-page .service-depth-image::after {
    background: linear-gradient(
        180deg,
        rgba(124, 205, 200, 0.7),
        rgba(184, 221, 122, 0.24)
    );
}

.diaxeirisi-page .service-depth-card span {
    background: rgba(184, 221, 122, 0.42);
}

.diaxeirisi-page .service-depth-card-accent {
    background:
        radial-gradient(
            circle at 84% 8%,
            rgba(124, 205, 200, 0.42),
            transparent 34%
        ),
        rgba(247, 231, 151, 0.24);
}

.diaxeirisi-page .service-outcomes-section {
    background:
        radial-gradient(
            circle at 18% 14%,
            rgba(124, 205, 200, 0.32),
            transparent 31%
        ),
        radial-gradient(
            circle at 90% 18%,
            rgba(184, 221, 122, 0.32),
            transparent 30%
        ),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 52%),
        #fbfbf8;
}

.diaxeirisi-page .service-outcomes-image {
    background: rgba(124, 205, 200, 0.14);
}

.diaxeirisi-page .service-outcomes-lists article:nth-child(2) {
    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(184, 221, 122, 0.44),
            transparent 32%
        ),
        rgba(247, 231, 151, 0.16);
}

.diaxeirisi-page .service-outcomes-lists li span {
    background: rgba(184, 221, 122, 0.5);
}

.bento-tile {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    padding: clamp(24px, 2.4vw, 36px);
    border-radius: 32px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.bento-feature {
    grid-column: span 7;
    min-height: 360px;
    color: #101010;
    background:
        radial-gradient(
            circle at 85% 18%,
            rgba(255, 255, 255, 0.28),
            transparent 30%
        ),
        linear-gradient(135deg, #f7e797 0%, #f7e797 48%, #d9c4f8 100%);
}

.bento-feature::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -45%;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
}

.bento-feature-copy {
    position: relative;
    z-index: 2;
    max-width: 420px;
}

.bento-feature-copy span,
.tile-label {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bento-feature h3,
.bento-sleep h3 {
    margin: 0;
    font-size: clamp(29px, 2.6vw, 40px);
    line-height: 1.08;
    letter-spacing: 0;
}

.bento-feature p,
.bento-sleep p,
.bento-chart p,
.bento-weight p {
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
}

.bento-feature-copy span,
.bento-feature p {
    color: rgba(17, 17, 17, 0.68);
}

.bento-students {
    position: absolute;
    z-index: 1;
    right: -3%;
    bottom: -14%;
    width: min(430px, 52%);
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.22));
}

.bento-pill {
    position: absolute;
    z-index: 3;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 15px 26px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.bento-blue {
    grid-column: span 5;
    min-height: 360px;
    color: #fff;
    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(255, 255, 255, 0.22),
            transparent 28%
        ),
        #86d0df;
}

.progress-cups {
    position: absolute;
    top: 34px;
    right: 32px;
    display: grid;
    grid-template-columns: repeat(5, 22px);
    gap: 10px;
}

.progress-cups span {
    height: 30px;
    border-radius: 6px 6px 12px 12px;
    background: rgba(255, 255, 255, 0.76);
}

.progress-cups .empty {
    background: rgba(23, 64, 73, 0.45);
}

.bento-blue p {
    max-width: 240px;
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
}

.bento-blue strong {
    position: absolute;
    right: 34px;
    bottom: 62px;
    font-size: clamp(48px, 5vw, 82px);
    line-height: 0.9;
    font-weight: 400;
}

.bento-blue small {
    position: absolute;
    right: 38px;
    bottom: 34px;
    font-size: 22px;
}

.bento-meetings strong {
    max-width: calc(100% - 68px);
    text-align: right;
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 800;
    line-height: 0.98;
}

.bento-meetings small {
    max-width: calc(100% - 76px);
    text-align: right;
    font-size: clamp(14px, 1.45vw, 18px);
    font-weight: 800;
    line-height: 1.28;
}

.bento-sleep,
.bento-chart,
.bento-weight {
    min-height: 330px;
}

.bento-sleep {
    grid-column: span 4;
}

.bento-mini-slider {
    position: relative;
}

.bento-mini-slide {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 320ms ease,
        visibility 320ms ease;
}

.bento-mini-slide:not(.is-active) {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bento-mini-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.avatar-row {
    display: flex;
    margin-bottom: 26px;
}

.avatar-row span {
    width: 34px;
    height: 34px;
    margin-right: -8px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #a4c87e;
    transform: translateY(8px) scale(0.86);
    opacity: 0;
}

.avatar-row span:nth-child(2) {
    background: #f7e797;
}

.avatar-row span:nth-child(3) {
    background: #86d0df;
}

.bento-mini-slide:nth-child(2) .avatar-row span:nth-child(1) {
    background: #7ccdc8;
}

.bento-mini-slide:nth-child(2) .avatar-row span:nth-child(2) {
    background: #f0c84b;
}

.bento-mini-slide:nth-child(2) .avatar-row span:nth-child(3) {
    background: #d7c0f4;
}

.bento-mini-slide:nth-child(3) .avatar-row span:nth-child(1) {
    background: #f7e797;
}

.bento-mini-slide:nth-child(3) .avatar-row span:nth-child(2) {
    background: #ff9f8f;
}

.bento-mini-slide:nth-child(3) .avatar-row span:nth-child(3) {
    background: #86d0df;
}

.bento-mini-slide.is-active .avatar-row span {
    animation: avatar-dot-in 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bento-mini-slide.is-active .avatar-row span:nth-child(2) {
    animation-delay: 70ms;
}

.bento-mini-slide.is-active .avatar-row span:nth-child(3) {
    animation-delay: 140ms;
}

@keyframes avatar-dot-in {
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bento-mini-slide.is-active .avatar-row span {
        animation: none;
        transform: none;
        opacity: 1;
    }

    .bar-chart span,
    .line-art span,
    .line-art span + span {
        animation: none !important;
        transition: none;
        opacity: 1;
    }

    .bar-chart span {
        transform: scaleY(1);
    }

    .line-art span {
        transform: rotate(-8deg) scaleX(1);
    }

    .line-art span + span {
        transform: rotate(8deg) translateY(20px) scaleX(1);
    }
}

.bento-sleep h3 {
    max-width: 310px;
    color: #151515;
    font-size: clamp(23px, 1.8vw, 30px);
}

.bento-sleep p,
.bento-chart p,
.bento-weight p {
    color: var(--muted);
}

.mini-nav {
    position: absolute;
    right: 28px;
    bottom: 24px;
    display: flex;
    gap: 8px;
}

.mini-nav button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: #f0f1ec;
    color: #111;
    font-size: 18px;
}

.bento-chart {
    grid-column: span 4;
}

.bento-weight {
    grid-column: span 4;
}

.tile-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tile-row h3 {
    margin: 0;
    font-size: 25px;
}

.tile-row strong {
    margin-left: auto;
    font-size: 24px;
}

.metric-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eef1eb;
    color: var(--green);
    font-size: 15px;
    font-weight: 800;
}

.bar-chart {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    align-items: end;
    gap: 6px;
    height: 74px;
    margin-top: 28px;
}

.bar-chart span {
    height: 58%;
    border-radius: 999px;
    background: #a4c87e;
    transform: scaleY(0.22);
    transform-origin: bottom;
    opacity: 0.42;
    transition:
        transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 520ms ease;
}

.bar-chart span:nth-child(3n) {
    height: 76%;
}

.bar-chart span:nth-child(4n) {
    height: 92%;
}

.bar-chart span:nth-child(1) { transition-delay: 0ms; }
.bar-chart span:nth-child(2) { transition-delay: 45ms; }
.bar-chart span:nth-child(3) { transition-delay: 90ms; }
.bar-chart span:nth-child(4) { transition-delay: 135ms; }
.bar-chart span:nth-child(5) { transition-delay: 180ms; }
.bar-chart span:nth-child(6) { transition-delay: 225ms; }
.bar-chart span:nth-child(7) { transition-delay: 270ms; }
.bar-chart span:nth-child(8) { transition-delay: 315ms; }
.bar-chart span:nth-child(9) { transition-delay: 360ms; }
.bar-chart span:nth-child(10) { transition-delay: 405ms; }
.bar-chart span:nth-child(11) { transition-delay: 450ms; }
.bar-chart span:nth-child(12) { transition-delay: 495ms; }
.bar-chart span:nth-child(13) { transition-delay: 540ms; }
.bar-chart span:nth-child(14) { transition-delay: 585ms; }
.bar-chart span:nth-child(15) { transition-delay: 630ms; }

.bento-card.is-visible .bar-chart span,
.bento-chart:hover .bar-chart span {
    transform: scaleY(1);
    opacity: 1;
}

.bento-chart:hover .bar-chart span {
    animation: bar-hover-pop 620ms cubic-bezier(0.16, 1.18, 0.32, 1) both;
}

.bento-chart:hover .bar-chart span:nth-child(1) { animation-delay: 0ms; }
.bento-chart:hover .bar-chart span:nth-child(2) { animation-delay: 35ms; }
.bento-chart:hover .bar-chart span:nth-child(3) { animation-delay: 70ms; }
.bento-chart:hover .bar-chart span:nth-child(4) { animation-delay: 105ms; }
.bento-chart:hover .bar-chart span:nth-child(5) { animation-delay: 140ms; }
.bento-chart:hover .bar-chart span:nth-child(6) { animation-delay: 175ms; }
.bento-chart:hover .bar-chart span:nth-child(7) { animation-delay: 210ms; }
.bento-chart:hover .bar-chart span:nth-child(8) { animation-delay: 245ms; }
.bento-chart:hover .bar-chart span:nth-child(9) { animation-delay: 280ms; }
.bento-chart:hover .bar-chart span:nth-child(10) { animation-delay: 315ms; }
.bento-chart:hover .bar-chart span:nth-child(11) { animation-delay: 350ms; }
.bento-chart:hover .bar-chart span:nth-child(12) { animation-delay: 385ms; }
.bento-chart:hover .bar-chart span:nth-child(13) { animation-delay: 420ms; }
.bento-chart:hover .bar-chart span:nth-child(14) { animation-delay: 455ms; }
.bento-chart:hover .bar-chart span:nth-child(15) { animation-delay: 490ms; }

@keyframes bar-hover-pop {
    0% {
        transform: scaleY(0.42);
        opacity: 0.58;
    }
    58% {
        transform: scaleY(1.12);
        opacity: 1;
    }
    78% {
        transform: scaleY(0.9);
    }
    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.metric-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 26px;
    color: #555;
    font-size: 12px;
}

.metric-row span {
    flex: 1 1 0;
}

.metric-row b {
    display: block;
    color: #111;
    font-size: 22px;
}

.line-art {
    position: relative;
    height: 96px;
    margin: 32px 0 22px;
}

.line-art span {
    position: absolute;
    inset: 20px 0;
    border-top: 8px solid rgba(134, 208, 223, 0.55);
    border-radius: 50%;
    transform: rotate(-8deg) scaleX(0.18);
    transform-origin: left center;
    opacity: 0.32;
    transition:
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 520ms ease;
}

.line-art span + span {
    border-color: rgba(134, 208, 223, 0.28);
    transform: rotate(8deg) translateY(20px) scaleX(0.18);
    transition-delay: 140ms;
}

.bento-card.is-visible .line-art span,
.bento-weight:hover .line-art span {
    transform: rotate(-8deg) scaleX(1);
    opacity: 1;
}

.bento-card.is-visible .line-art span + span,
.bento-weight:hover .line-art span + span {
    transform: rotate(8deg) translateY(20px) scaleX(1);
}

.big-metric {
    font-size: clamp(58px, 5.2vw, 96px);
    line-height: 0.9;
    font-weight: 400;
}

.big-metric span {
    font-size: 34px;
}

.service-showcase {
    min-height: clamp(340px, 54svh, 520px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    margin-top: clamp(24px, 3vw, 44px);
    padding: 0;
    border-radius: 30px;
    background: transparent;
    box-shadow: none;
}

.bento-overview + .service-showcase {
    margin-top: clamp(72px, 9vw, 148px);
}

.service-showcase + .service-showcase {
    margin-top: clamp(42px, 5vw, 78px);
}

.service-showcase:last-of-type {
    padding-bottom: clamp(28px, 3.2vw, 52px);
    margin-bottom: 0;
}

.mini-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.7vw, 28px);
    margin-top: clamp(42px, 5vw, 84px);
    margin-bottom: clamp(42px, 5vw, 84px);
}

.mini-service {
    min-height: clamp(220px, 24svh, 300px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 2.4vw, 34px);
    border-radius: 32px;
    color: #101010;
    background: #f7e797;
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
    overflow: hidden;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.mini-service::after {
    content: "";
    position: absolute;
    right: -18%;
    top: -38%;
    width: 68%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    pointer-events: none;
}

.mini-service:hover {
    transform: translateY(-3px);
    box-shadow:
        inset 0 0 0 1px rgba(17, 17, 17, 0.07),
        0 22px 46px rgba(15, 34, 26, 0.12);
}

.mini-service span {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.mini-service strong {
    position: relative;
    z-index: 1;
    max-width: 360px;
    font-family: "Geologica", var(--font);
    font-size: clamp(27px, 2.3vw, 34px);
    line-height: 1.02;
    letter-spacing: 0;
}

.mini-service small {
    position: relative;
    z-index: 1;
    max-width: 340px;
    margin-top: 16px;
    color: rgba(17, 17, 17, 0.68);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 800;
}

.mini-service em {
    position: relative;
    z-index: 1;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 20px;
    padding: 10px 17px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.9);
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    transition:
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.mini-service:hover em {
    transform: translateX(4px);
    background: #fff;
    color: #111;
}

.mini-service-transfer {
    background: #f7e797;
}

.mini-service-career {
    background: #7ccdc8;
    color: #fff;
}

.mini-service-career small {
    color: rgba(255, 255, 255, 0.76);
}

.mini-service-postgrad {
    background: #d9c4f8;
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(24px, 4vw, 72px);
    margin-top: clamp(34px, 4.4vw, 72px);
    margin-bottom: clamp(54px, 6vw, 96px);
    padding: clamp(26px, 3vw, 44px);
    border-radius: 32px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.faq-heading {
    align-self: start;
    position: sticky;
    top: 28px;
}

.faq-heading p {
    margin: 0 0 16px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.faq-heading h2 {
    max-width: 440px;
    margin: 0;
    color: #14253b;
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1.02;
    letter-spacing: 0;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 22px;
    background: #f4f5ef;
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
    overflow: hidden;
    transition:
        background 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow:
        inset 0 0 0 1px rgba(17, 17, 17, 0.06),
        0 16px 34px rgba(17, 17, 17, 0.08);
}

.faq-item[open] {
    background: #fff;
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 20px 58px 20px 22px;
    color: #111;
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.28;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
    transition:
        color 180ms ease,
        padding-left 180ms ease;
}

.faq-item:hover summary {
    color: #111;
    padding-left: 26px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 19px;
    line-height: 1;
    transform: translateY(-50%);
    transition:
        background 180ms ease,
        color 180ms ease,
        transform 220ms ease;
}

.faq-item[open] summary::after {
    content: "-";
    background: var(--green);
    transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
    max-width: 720px;
    margin: 0;
    padding: 0 58px 24px 22px;
    color: rgba(17, 17, 17, 0.68);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-4px);
    transition:
        opacity 220ms ease,
        transform 220ms ease;
}

.faq-item[open] p {
    opacity: 1;
    transform: translateY(0);
}

.webinars-section {
    display: block;
    margin-top: clamp(42px, 5vw, 84px);
    margin-bottom: clamp(54px, 6vw, 96px);
    padding: clamp(28px, 4vw, 56px);
    border-radius: 32px;
    background: #f4f1ec;
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.05);
}

.webinars-hero {
    max-width: 820px;
}

.webinars-hero p {
    margin: 0 0 18px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.webinars-hero h2 {
    margin: 0;
    color: #1a1816;
    font-size: clamp(56px, 6vw, 92px);
    line-height: 0.88;
    letter-spacing: 0;
}

.webinars-hero > span {
    display: block;
    max-width: 580px;
    margin-top: 26px;
    color: rgba(17, 17, 17, 0.58);
    font-size: clamp(16px, 1.35vw, 21px);
    line-height: 1.6;
    font-weight: 700;
}

.webinars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: clamp(28px, 3vw, 44px);
}

.webinar-card {
    display: grid;
    grid-template-columns: clamp(112px, 10vw, 168px) minmax(0, 1fr) minmax(
            86px,
            auto
        );
    align-items: center;
    gap: clamp(22px, 3.5vw, 56px);
    min-height: clamp(150px, 15vw, 210px);
    padding: clamp(24px, 3vw, 44px);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.58);
}

.webinar-card img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    object-fit: cover;
    background: #ddd8d1;
}

.webinar-card h3 {
    margin: 0;
    font-family: "Geologica", var(--font);
    font-size: clamp(30px, 2.5vw, 38px);
    line-height: 1.02;
    letter-spacing: 0;
}

.webinar-card p {
    max-width: 780px;
    margin: 18px 0 0;
    color: rgba(17, 17, 17, 0.6);
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.55;
    font-weight: 700;
}

.webinar-card time {
    justify-self: end;
    text-align: right;
    color: #1a1816;
    line-height: 0.9;
    text-transform: uppercase;
}

.webinar-card time b {
    display: block;
    font-family: "Geologica", var(--font);
    font-size: clamp(26px, 2.6vw, 42px);
    line-height: 0.9;
}

.webinar-card time span {
    display: block;
    margin-top: 6px;
    color: rgba(17, 17, 17, 0.58);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.webinar-card strong {
    display: block;
    margin-top: 16px;
    color: rgba(17, 17, 17, 0.72);
    font-size: 13px;
    font-weight: 900;
}

.book-now-section {
    position: relative;
    min-height: clamp(440px, 58svh, 620px);
    display: grid;
    align-items: end;
    margin-top: clamp(42px, 5vw, 84px);
    margin-bottom: clamp(54px, 6vw, 96px);
    padding: clamp(28px, 4vw, 58px);
    border-radius: 32px;
    color: #fff;
    background: #111;
    box-shadow: var(--shadow);
    overflow: hidden;
    isolation: isolate;
}

.book-now-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(8, 18, 16, 0.48),
            rgba(8, 18, 16, 0.24) 48%,
            rgba(8, 18, 16, 0.06)
        ),
        linear-gradient(0deg, rgba(0, 0, 0, 0.22), transparent 46%);
}

.book-now-video {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-now-content {
    max-width: 760px;
}

.book-now-content p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.book-now-content h2 {
    margin: 0;
    max-width: 620px;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.02;
    letter-spacing: 0;
}

.webinars-video-section {
    margin-top: clamp(42px, 5vw, 84px);
    margin-bottom: clamp(42px, 5vw, 84px);
}

.webinars-video-section .book-now-content {
    align-self: end;
}

.webinars-video-section .book-now-content h2 {
    font-size: clamp(42px, 6vw, 86px);
    line-height: 0.95;
}

.book-now-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(54px, 6.6vh, 68px);
    margin-top: clamp(28px, 4vh, 46px);
    padding: clamp(16px, 1.2vw, 20px) clamp(34px, 2.8vw, 48px);
    border-radius: 12px;
    background: var(--accent);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 16px 32px rgba(247, 231, 151, 0.35);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.book-now-content a:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(247, 231, 151, 0.45);
}

.blog-section {
    margin-top: clamp(42px, 5vw, 84px);
    margin-bottom: clamp(54px, 6vw, 96px);
}

.blog-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-bottom: clamp(22px, 3vw, 38px);
}

.blog-heading p {
    grid-column: 1 / -1;
    margin: 0 0 -6px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-heading h2 {
    max-width: 720px;
    margin: 0;
    color: #14253b;
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1.02;
    letter-spacing: 0;
}

.blog-heading > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.16);
    color: #111;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 1.8vw, 26px);
}

.blog-card {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow:
        inset 0 0 0 1px rgba(17, 17, 17, 0.08),
        0 22px 46px rgba(15, 34, 26, 0.12);
}

.blog-card img {
    width: 100%;
    aspect-ratio: 1.18;
    display: block;
    object-fit: cover;
}

.blog-card-copy {
    padding: clamp(20px, 2.2vw, 30px);
}

.blog-card-copy span {
    display: block;
    margin-bottom: 14px;
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.blog-card-copy h3 {
    margin: 0;
    color: #111;
    font-family: "Geologica", var(--font);
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.08;
    letter-spacing: 0;
}

.blog-card-copy p {
    margin: 16px 0 0;
    color: rgba(17, 17, 17, 0.56);
    font-size: 13px;
    font-weight: 800;
}

.blog-card-copy a {
    display: inline-flex;
    width: fit-content;
    margin-top: 22px;
    color: #008f89;
    font-size: 13px;
    font-weight: 900;
}

.home-posts-section {
    --archive-paper: #efeee8;
    --archive-lime: #c7ff26;
    --archive-ink: #111111;
}

.home-posts-section .blog-heading {
    margin-bottom: 18px;
}

.home-post-controls {
    margin: 0 0 clamp(18px, 2.6vw, 30px);
}

.home-posts-section .archive-carousel-region {
    margin-top: 0;
}

.home-posts-section .archive-carousel {
    grid-template-rows: minmax(0, auto);
    grid-auto-columns: clamp(290px, 22vw, 360px);
}

.home-posts-section .archive-post-card a {
    grid-template-rows: 30px 118px auto;
}

.home-posts-section .archive-post-meta-date-only {
    grid-template-columns: 1fr;
}

.home-posts-section .archive-post-meta-date-only .archive-post-date {
    justify-self: start;
}

.service-showcase-reverse .service-image-panel {
    order: -1;
}

.service-showcase-reverse .service-copy-panel {
    background: #7ccdc8;
    color: #fff;
}

.service-showcase-reverse .service-copy-panel > p:not(.service-eyebrow) {
    color: rgba(255, 255, 255, 0.78);
}

.service-showcase-reverse .service-actions a {
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
}

.service-showcase-reverse .service-actions a:first-child,
.service-showcase-reverse .service-proof strong {
    border-color: #fff;
    background: #fff;
    color: #008f89;
}

.service-showcase-reverse .service-avatars span {
    border-color: #7ccdc8;
}

.service-panel {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border: 14px solid #1f211d;
    border-radius: 24px;
}

.service-copy-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(28px, 3.4vw, 52px);
    text-align: center;
    background: #dfff57;
    color: #111;
}

.service-copy-panel.service-copy-time {
    background: #d9c4f8;
}

.service-eyebrow {
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-copy-panel h2 {
    max-width: 600px;
    margin: 0;
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1;
    letter-spacing: 0;
}

.service-copy-panel > p:not(.service-eyebrow) {
    max-width: 470px;
    margin: 18px 0 0;
    color: rgba(17, 17, 17, 0.74);
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.55;
    font-weight: 700;
}

.service-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.service-actions a {
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 12px 21px;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.34);
    color: #111;
    font-size: 13px;
    font-weight: 800;
    overflow: hidden;
    transition:
        border-color 220ms ease,
        color 220ms ease,
        transform 220ms ease;
}

.service-actions a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-actions a:hover {
    border-color: var(--green);
    color: #fff;
    transform: translateY(-2px);
}

.service-actions a:hover::before {
    transform: scaleX(1);
}

.service-actions a:first-child {
    border-color: #111;
    background: #111;
    color: #fff;
}

.service-actions a:first-child::before {
    background: #111;
}

.service-showcase-reverse .service-actions a::before {
    background: var(--accent);
}

.service-showcase-reverse .service-actions a:hover {
    border-color: var(--accent);
    color: #111;
}

.service-showcase-reverse .service-actions a:first-child::before {
    background: #fff;
}

.service-proof {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 12px;
    font-weight: 800;
}

.service-avatars {
    display: flex;
}

.service-avatars span {
    width: 28px;
    height: 28px;
    margin-right: -7px;
    border: 2px solid #dfff57;
    border-radius: 50%;
    background: #7ccdc8;
}

.service-avatars span:nth-child(2) {
    background: #f7e797;
}

.service-avatars span:nth-child(3) {
    background: #2e6123;
}

.service-proof strong {
    padding: 5px 10px;
    border-radius: 999px;
    background: #fff;
    font-size: 11px;
    letter-spacing: 0.12em;
}

.service-image-panel {
    background:
        linear-gradient(180deg, rgba(29, 57, 52, 0.05), rgba(29, 57, 52, 0.62)),
        radial-gradient(
            circle at 70% 42%,
            rgba(223, 255, 87, 0.36),
            transparent 30%
        ),
        linear-gradient(135deg, #7ccdc8, #315f58);
    background-position: center;
    background-size: cover;
}

.service-image-orientation {
    background-image:
        linear-gradient(180deg, rgba(29, 57, 52, 0.02), rgba(29, 57, 52, 0.62)),
        url("assets/service-orientation.jpg"),
        linear-gradient(135deg, #7ccdc8, #315f58);
    background-size: cover, cover, cover;
    background-repeat: no-repeat;
    background-position: center, center, center;
}

.service-image-mixanografiko {
    background-image:
        linear-gradient(180deg, rgba(29, 57, 52, 0.02), rgba(29, 57, 52, 0.62)),
        url("assets/service-mixanografiko.jpg"),
        linear-gradient(135deg, #7ccdc8, #315f58);
    background-size: cover, cover, cover;
    background-repeat: no-repeat;
    background-position: center, center, center;
}

.service-image-time {
    background-image:
        linear-gradient(180deg, rgba(29, 57, 52, 0.02), rgba(29, 57, 52, 0.62)),
        url("assets/service-time.jpg"),
        linear-gradient(135deg, #7ccdc8, #315f58);
    background-size: cover, cover, cover;
    background-repeat: no-repeat;
    background-position: center, center, center;
}

.service-image-panel img {
    display: none;
}

.service-quote {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: min(330px, calc(100% - 48px));
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-quote p {
    margin: 0;
    color: #111;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.service-quote span {
    display: block;
    margin-top: 10px;
    color: rgba(17, 17, 17, 0.56);
    font-size: 12px;
    font-weight: 700;
}

.service-slots {
    position: absolute;
    right: 24px;
    top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: min(78%, 360px);
    min-height: 48px;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.88);
    color: #fff;
}

.service-slots span {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dfff57;
}

.service-slots strong {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.15;
    text-transform: uppercase;
}

.footer-shell {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: var(--shell-pad);
    z-index: 0;
    width: min(calc(100% - (var(--shell-pad) * 2)), 1800px);
    height: auto;
    margin: 0;
    padding: 0;
    background: transparent;
    transform: translateX(-50%);
}

.footer-card {
    width: 100%;
    height: auto;
    min-height: var(--footer-reveal-height);
    position: relative;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    grid-template-areas:
        "brand form"
        "brand contact";
    align-items: end;
    gap: clamp(30px, 5vw, 82px);
    padding: clamp(34px, 5vw, 76px);
    border-radius: var(--radius);
    color: #fff;
    background:
        radial-gradient(
            circle at 18% 20%,
            rgba(247, 231, 151, 0.28),
            transparent 24%
        ),
        linear-gradient(135deg, #7ccdc8, #55beb8);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.footer-card::after {
    content: "";
    position: absolute;
    right: clamp(24px, 8vw, 140px);
    top: clamp(28px, 8vw, 120px);
    width: clamp(150px, 18vw, 280px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(247, 231, 151, 0.32);
}

.footer-meta {
    position: relative;
    z-index: 1;
    grid-area: contact;
    display: grid;
    align-self: end;
}

.footer-brand {
    position: relative;
    z-index: 1;
    grid-area: brand;
    align-self: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: clamp(28px, 4vw, 54px);
    color: #fff;
}

.footer-logo img {
    width: clamp(138px, 12vw, 176px);
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-brand h2 {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 4.2vw, 56px);
    line-height: 0.92;
    letter-spacing: 0;
}

.footer-brand p {
    max-width: 560px;
    margin: clamp(22px, 3vw, 34px) 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.55;
    font-weight: 700;
}

.newsletter-form {
    position: relative;
    z-index: 1;
    grid-area: form;
    align-self: end;
}

.newsletter-form label {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.newsletter-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.newsletter-field input {
    min-width: 0;
    width: 100%;
    min-height: 54px;
    border: 0;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    color: #fff;
    font: inherit;
    font-weight: 700;
}

.newsletter-field input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.newsletter-field button {
    border: 0;
    border-radius: 999px;
    min-height: 54px;
    padding: 0 28px;
    background: #fff;
    color: #008f89;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.newsletter-field button:hover {
    transform: translateY(-1px);
    background: var(--accent);
    color: #111;
}

.footer-contact {
    display: grid;
    gap: 7px;
    font-style: normal;
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.22;
    font-weight: 800;
}

.footer-contact a {
    width: fit-content;
    color: #fff;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.footer-contact a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: clamp(22px, 3vw, 34px);
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transition:
        transform 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    background: var(--accent);
    color: #111;
}

.hero-card {
    width: min(100%, 1800px);
    height: calc(100svh - 16px);
    min-height: 620px;
    position: sticky;
    top: var(--shell-pad);
    z-index: 1;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
    isolation: isolate;
}

.hero-nav {
    position: absolute;
    top: clamp(28px, 4.2vh, 52px);
    left: clamp(34px, 4.8vw, 72px);
    right: clamp(34px, 4.8vw, 72px);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.logo-button,
.menu-toggle,
.menu-close,
.menu-round-action {
    pointer-events: auto;
    border: 0;
    cursor: pointer;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: auto;
}

.nav-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 13px 26px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: #2f8f89;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(34, 118, 112, 0.18);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.nav-book::before {
    content: "";
    width: 1.35em;
    height: 1.35em;
    flex: 0 0 auto;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%23000000' viewBox='0 0 256 256'%3E%3Cpath d='M208,32H184V24a8,8,0,0,0-16,0v8H88V24a8,8,0,0,0-16,0v8H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM72,48v8a8,8,0,0,0,16,0V48h80v8a8,8,0,0,0,16,0V48h24V80H48V48ZM208,208H48V96H208V208Zm-48-56a8,8,0,0,1-8,8H136v16a8,8,0,0,1-16,0V160H104a8,8,0,0,1,0-16h16V128a8,8,0,0,1,16,0v16h16A8,8,0,0,1,160,152Z'%3E%3C/path%3E%3C/svg%3E")
        center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%23000000' viewBox='0 0 256 256'%3E%3Cpath d='M208,32H184V24a8,8,0,0,0-16,0v8H88V24a8,8,0,0,0-16,0v8H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM72,48v8a8,8,0,0,0,16,0V48h80v8a8,8,0,0,0,16,0V48h24V80H48V48ZM208,208H48V96H208V208Zm-48-56a8,8,0,0,1-8,8H136v16a8,8,0,0,1-16,0V160H104a8,8,0,0,1,0-16h16V128a8,8,0,0,1,16,0v16h16A8,8,0,0,1,160,152Z'%3E%3C/path%3E%3C/svg%3E")
        center / contain no-repeat;
}

.nav-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(34, 118, 112, 0.24);
}

.logo-button {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(46, 97, 35, 0.08);
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.logo-image:not([src]),
.logo-image[src=""] {
    display: none;
}

.logo-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.02em;
    z-index: 1;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    gap: 0;
    padding: 13px 9px;
    border-radius: 50%;
    background: transparent;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--text);
    transition:
        transform 220ms ease,
        opacity 220ms ease;
}

.menu-toggle span + span {
    margin-top: 8px;
}

.menu-open .menu-toggle span:first-child {
    transform: translateY(5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
    transform: translateY(-5px) rotate(-45deg);
}

.hero-copy {
    position: absolute;
    z-index: 4;
    left: clamp(88px, 13.5vw, 245px);
    top: 50%;
    width: min(38%, 520px);
    transform: translateY(-50%);
}

.hero-kicker {
    margin: 0 0 clamp(16px, 2.2vh, 26px);
    font-size: clamp(11px, 0.85vw, 14px);
    font-weight: 800;
    color: var(--green);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 640px;
    margin: 0;
    font-size: clamp(48px, 4.2vw, 64px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: 0;
    color: var(--text);
}

.hero-text {
    width: min(420px, 100%);
    margin: clamp(22px, 2.8vh, 34px) 0 0;
    color: var(--muted);
    font-size: clamp(14px, 1.05vw, 17px);
    line-height: 1.65;
    font-weight: 500;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(54px, 6.6vh, 68px);
    margin-top: clamp(28px, 4vh, 46px);
    padding: clamp(16px, 1.2vw, 20px) clamp(34px, 2.8vw, 48px);
    border-radius: 12px;
    background: var(--accent);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 16px 32px rgba(247, 231, 151, 0.35);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(247, 231, 151, 0.45);
}

.hero-visual {
    position: absolute;
    z-index: 2;
    right: clamp(62px, 7vw, 132px);
    bottom: clamp(34px, 5.5vh, 76px);
    width: min(50%, 800px);
    height: 82%;
}

.visual-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.visual-slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    margin: 0;
    opacity: 0;
    transform: translateX(38px) scale(0.96) rotate(1.5deg);
    clip-path: inset(0 0 0 24% round 42px);
    pointer-events: none;
    transition:
        opacity 720ms ease,
        transform 860ms cubic-bezier(0.2, 0.8, 0.2, 1),
        clip-path 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.visual-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0deg);
    clip-path: inset(0 0 0 0 round 0);
    pointer-events: auto;
}

.accent-circle {
    position: absolute;
    right: 3%;
    top: 8%;
    width: min(560px, 88%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.82;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.visual-slide.is-active .accent-circle {
    transform: scale(1);
}

.accent-green {
    background: #a4c87e;
    opacity: 0.72;
}

.accent-cream {
    background: #fbebbf;
    opacity: 0.9;
}

.students-image {
    position: relative;
    z-index: 3;
    width: min(680px, 100%);
    height: 92%;
    object-fit: contain;
    object-position: center center;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.16));
}

.placeholder-image {
    max-height: 92%;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.12));
}

.image-glass-card {
    position: absolute;
    z-index: 5;
    left: clamp(150px, 24%, 260px);
    bottom: clamp(76px, 14%, 132px);
    width: min(270px, 58%);
    min-height: 104px;
    margin: 0;
    padding: 18px 20px;
    border-radius: 24px;
    color: #fff;
    background:
        linear-gradient(
            135deg,
            rgba(72, 85, 68, 0.58),
            rgba(168, 168, 154, 0.34)
        ),
        rgba(46, 54, 43, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 20px 46px rgba(24, 32, 20, 0.18);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    backdrop-filter: blur(18px) saturate(125%);
    transform: translateY(18px);
    opacity: 0;
    transition:
        opacity 620ms ease 180ms,
        transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms;
}

.visual-slide.is-active .image-glass-card {
    opacity: 1;
    transform: translateY(0);
}

.image-glass-card span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.image-glass-card strong {
    display: block;
    font-size: clamp(15px, 1.2vw, 19px);
    line-height: 1.2;
}

.image-glass-card p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 600;
}

.contact-shadow {
    position: absolute;
    z-index: 2;
    bottom: clamp(52px, 10%, 92px);
    left: 18%;
    width: 62%;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.13);
    filter: blur(14px);
}

.pagination-dots {
    position: absolute;
    z-index: 4;
    top: 50%;
    right: 33px;
    transform: translateY(-50%);
    display: grid;
    gap: 14px;
}

.pagination-dots button {
    width: 6px;
    height: 6px;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d6d6d1;
    cursor: pointer;
    transition:
        background 220ms ease,
        transform 220ms ease;
}

.pagination-dots .active {
    background: var(--green);
    transform: scale(1.35);
}

.social-links {
    position: absolute;
    z-index: 4;
    left: 50px;
    bottom: 39px;
    display: flex;
    gap: 18px;
    font-size: 10px;
    font-weight: 800;
    color: var(--text);
}

.social-links a {
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.social-links a:hover {
    color: var(--green);
    transform: translateY(-1px);
}

.scroll-indicator {
    position: absolute;
    z-index: 4;
    right: 39px;
    bottom: 35px;
    width: 16px;
    height: 32px;
    display: grid;
    justify-items: center;
    padding-top: 6px;
    border: 2px solid var(--text);
    border-radius: 999px;
}

.scroll-indicator span {
    width: 2px;
    height: 8px;
    border-radius: 999px;
    background: var(--text);
}

.hero-card {
    background: var(--hero-teal);
}

.future-nav {
    top: 32px;
    left: clamp(34px, 4.4vw, 76px);
    right: clamp(34px, 4.4vw, 76px);
    display: grid;
    grid-template-columns: auto auto;
    gap: 28px;
    color: #fff;
}

.future-logo {
    width: auto;
    height: clamp(38px, 3.8vw, 52px);
    display: inline-flex;
    align-items: center;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.future-logo .logo-image {
    width: auto;
    height: 100%;
    max-height: none;
    display: block;
    object-fit: contain;
    position: relative;
    border-radius: 0;
}

.future-logo .logo-fallback {
    display: none;
}

.logo-text {
    display: none;
}

.future-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 36px);
    pointer-events: auto;
}

.future-nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(10px, 0.76vw, 12px);
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 180ms ease;
}

.future-nav-links a:hover {
    color: #fff;
}

.search-button {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: auto;
    cursor: pointer;
    margin-right: 10px;
}

.search-button span {
    width: 13px;
    height: 13px;
    position: relative;
    display: block;
    border: 2px solid #fff;
    border-radius: 50%;
}

.search-button span::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -4px;
    width: 7px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transform: rotate(45deg);
}

.site-search {
    width: 34px;
    height: 34px;
    position: relative;
    z-index: 30;
    flex: 0 0 auto;
    margin-right: 10px;
    pointer-events: auto;
    transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-search.is-open,
.site-search:focus-within {
    width: clamp(250px, 24vw, 380px);
}

.site-search-form {
    position: absolute;
    top: -4px;
    right: 0;
    width: 100%;
    min-width: 34px;
    height: 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: center;
    gap: 6px;
    margin: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    transition:
        background 220ms ease,
        box-shadow 220ms ease,
        padding 220ms ease;
}

.site-search-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.site-search.is-open .site-search-form,
.site-search:focus-within .site-search-form {
    padding: 4px 5px 4px 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(13, 75, 72, 0.22);
}

.site-search .search-button {
    grid-column: 2;
    margin-right: 0;
    justify-self: end;
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.site-search.is-open .search-button,
.site-search:focus-within .search-button {
    background: rgba(17, 24, 39, 0.07);
}

.site-search.is-open .search-button span,
.site-search:focus-within .search-button span {
    border-color: #17181c;
}

.site-search.is-open .search-button span::after,
.site-search:focus-within .search-button span::after {
    background: #17181c;
}

.site-search-input {
    width: 100%;
    min-width: 0;
    grid-column: 1;
    border: 0;
    outline: 0;
    padding: 0;
    background: transparent;
    color: #17181c;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.site-search-input::placeholder {
    color: rgba(23, 24, 28, 0.5);
}

.site-search.is-open .site-search-input,
.site-search:focus-within .site-search-input {
    opacity: 1;
    pointer-events: auto;
}

.site-search-results {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(380px, calc(100vw - 56px));
    max-height: min(430px, 62vh);
    overflow: auto;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    color: #17181c;
    box-shadow:
        0 28px 70px rgba(10, 37, 35, 0.22),
        inset 0 0 0 1px rgba(46, 97, 35, 0.08);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.site-search.is-open .site-search-results,
.site-search:focus-within .site-search-results {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.site-search-results[hidden] {
    display: none;
}

.site-search-results p {
    margin: 0;
    padding: 14px 16px;
    color: rgba(23, 24, 28, 0.52);
    font-size: 13px;
    font-weight: 800;
}

.site-search-result {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 12px;
    transition:
        background 160ms ease,
        transform 160ms ease;
}

.site-search-result:hover,
.site-search-result:focus-visible {
    background: rgba(124, 205, 200, 0.16);
    transform: translateX(-2px);
}

.site-search-result span {
    color: #2f8f89;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.site-search-result strong {
    color: #17181c;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
}

.site-search-result small {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: rgba(23, 24, 28, 0.58);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.future-nav .menu-toggle span {
    background: #fff;
}

.future-hero-content {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 112px clamp(34px, 5vw, 80px) 178px;
    text-align: center;
}

.future-slider {
    position: absolute;
    inset: 112px clamp(34px, 5vw, 80px) 178px;
    z-index: 2;
    pointer-events: auto;
    touch-action: pan-y;
    cursor: grab;
}

.future-slider.is-dragging {
    cursor: grabbing;
}

.future-slide {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    margin: 0;
    opacity: 0;
    transform: translateY(46px) scale(0.98);
    filter: blur(16px);
    clip-path: inset(0 0 100% 0 round 48px);
    transition:
        opacity 520ms ease,
        transform 820ms cubic-bezier(0.16, 1.18, 0.32, 1),
        filter 700ms ease,
        clip-path 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

.future-slide.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    clip-path: inset(0 0 0 0 round 0);
}

.slide-backward .future-slide {
    transform: translateY(-46px) scale(0.98);
    clip-path: inset(100% 0 0 0 round 48px);
}

.slide-backward .future-slide.is-active {
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0 round 0);
}

.future-preview {
    position: absolute;
    top: 51%;
    z-index: 0;
    width: clamp(178px, 18vw, 312px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: clamp(6px, 0.65vw, 10px) solid #112641;
    border-radius: clamp(18px, 2vw, 30px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 26px 56px rgba(20, 83, 79, 0.2),
        0 6px 0 rgba(255, 255, 255, 0.18) inset;
    opacity: 0.72;
    filter: saturate(0.95) blur(0.2px);
    transition:
        opacity 420ms ease,
        transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
        filter 420ms ease;
    pointer-events: none;
}

.future-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(90, 205, 196, 0.38),
            transparent 35%,
            transparent 65%,
            rgba(90, 205, 196, 0.38)
        ),
        linear-gradient(180deg, transparent 58%, rgba(24, 96, 91, 0.24));
    pointer-events: none;
}

.future-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.future-preview-left {
    left: clamp(28px, 8vw, 150px);
    transform: translate(-10%, -50%) rotate(-2.5deg);
}

.future-preview-right {
    right: clamp(28px, 8vw, 150px);
    transform: translate(10%, -50%) rotate(2.5deg);
}

.future-preview.is-swapping {
    opacity: 0.46;
    filter: saturate(0.86) blur(1.2px);
}

.future-preview.is-swapping img {
    transform: scale(1.1);
}

.hero-card[data-preview-direction="forward"] .future-preview-left.is-swapping {
    transform: translate(-18%, -50%) rotate(-4deg);
}

.hero-card[data-preview-direction="forward"] .future-preview-right.is-swapping {
    transform: translate(18%, -50%) rotate(4deg);
}

.hero-card[data-preview-direction="backward"] .future-preview-left.is-swapping {
    transform: translate(-2%, -50%) rotate(-1deg);
}

.hero-card[data-preview-direction="backward"]
    .future-preview-right.is-swapping {
    transform: translate(2%, -50%) rotate(1deg);
}

.future-kicker {
    position: absolute;
    top: clamp(108px, 15vh, 150px);
    left: 50%;
    z-index: 3;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
}

.future-title {
    position: absolute;
    z-index: 1;
    display: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-family: "Geologica", var(--font);
    font-size: clamp(86px, 12vw, 160px);
    line-height: 0.88;
    font-weight: 800;
    letter-spacing: 0.08em;
    pointer-events: none;
    transform: translateX(0.04em);
    transition:
        letter-spacing 820ms cubic-bezier(0.16, 1, 0.3, 1),
        opacity 520ms ease;
}

.future-slide:not(.is-active) .future-title {
    letter-spacing: 0.18em;
    opacity: 0.35;
}

.future-media {
    position: relative;
    z-index: 2;
    width: clamp(520px, 43vw, 680px);
    aspect-ratio: 1 / 1;
    max-height: min(68vh, 660px);
    overflow: hidden;
    border: clamp(8px, 0.9vw, 14px) solid #112641;
    border-radius: clamp(24px, 2.4vw, 38px);
    object-fit: cover;
    pointer-events: none;
    box-shadow:
        0 34px 66px rgba(20, 83, 79, 0.24),
        0 8px 0 rgba(255, 255, 255, 0.16) inset;
}

.future-students {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.future-slide-badge {
    position: absolute;
    left: 50%;
    bottom: clamp(16px, 2vw, 30px);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: clamp(48px, 4.6vw, 66px);
    max-width: calc(100% - 34px);
    padding: 14px clamp(22px, 2.6vw, 38px);
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.94);
    color: #fff;
    font-size: clamp(15px, 1.36vw, 22px);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%);
    will-change: transform, opacity;
    pointer-events: none;
}

.future-slide-badge::before {
    content: "";
    width: clamp(10px, 0.9vw, 14px);
    height: clamp(10px, 0.9vw, 14px);
    border-radius: 50%;
    background: #dfff57;
    flex: 0 0 auto;
}

.future-graphic {
    width: clamp(460px, 40vw, 620px);
    max-height: min(58vh, 580px);
}

.future-slider::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 63%;
    width: min(420px, 42vw);
    height: 34px;
    border-radius: 50%;
    background: rgba(25, 89, 84, 0.18);
    filter: blur(14px);
    transform: translateX(-50%);
    pointer-events: none;
}

.future-cta {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: clamp(132px, 16vh, 176px);
    margin: 0;
    transform: translateX(-50%);
    will-change: transform, opacity;
}

.future-cta:hover {
    transform: translateX(-50%) translateY(-2px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    color: #4aa5a0;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-arrow-left {
    left: 48px;
}

.hero-arrow-right {
    right: 48px;
}

.future-info {
    position: absolute;
    left: 50%;
    bottom: clamp(34px, 5.2vh, 58px);
    z-index: 5;
    width: min(820px, calc(100% - 160px));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 64px);
    color: #fff;
    transform: translateX(-50%);
}

.future-info article {
    min-width: 0;
}

.future-info span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.future-info p {
    margin: 0;
    font-size: clamp(13px, 0.9vw, 13px);
    line-height: 1.45;
    font-weight: 700;
}

.future-info article::after {
    content: "";
    display: block;
    width: 44px;
    height: 1px;
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.76);
}

.future-nav ~ .scroll-indicator {
    border-color: rgba(255, 255, 255, 0.82);
}

.future-nav ~ .scroll-indicator span {
    background: rgba(255, 255, 255, 0.82);
}

body.home-page:not(.menu-is-open) .hero-shell:first-child .future-logo {
    animation: hero-pop-in 560ms cubic-bezier(0.16, 1.18, 0.32, 1) 80ms both;
}

body.home-page:not(.menu-is-open) .hero-shell:first-child .nav-actions {
    animation: hero-drop-in 560ms cubic-bezier(0.16, 1.18, 0.32, 1) 140ms both;
}

body.home-page:not(.menu-is-open) .hero-shell:first-child .future-preview-left {
    animation: hero-preview-left-in 680ms cubic-bezier(0.16, 1.18, 0.32, 1) 220ms both;
}

body.home-page:not(.menu-is-open) .hero-shell:first-child .future-preview-right {
    animation: hero-preview-right-in 680ms cubic-bezier(0.16, 1.18, 0.32, 1) 260ms both;
}

body.home-page:not(.menu-is-open) .hero-shell:first-child .future-slide.is-active .future-media {
    animation: hero-card-pop-in 700ms cubic-bezier(0.16, 1.18, 0.32, 1) 310ms both;
}

body.home-page:not(.menu-is-open) .hero-shell:first-child .future-slide.is-active .future-slide-badge {
    animation: hero-badge-in 460ms cubic-bezier(0.16, 1, 0.3, 1) 460ms both;
}

body.home-page:not(.menu-is-open) .hero-shell:first-child .future-cta {
    animation: hero-cta-in 520ms cubic-bezier(0.16, 1, 0.3, 1) 560ms both;
}

body.home-page:not(.menu-is-open) .hero-shell:first-child .future-info article {
    animation: hero-step-in 500ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.home-page:not(.menu-is-open) .hero-shell:first-child .future-info article:nth-child(1) {
    animation-delay: 740ms;
}

body.home-page:not(.menu-is-open) .hero-shell:first-child .future-info article:nth-child(2) {
    animation-delay: 810ms;
}

body.home-page:not(.menu-is-open) .hero-shell:first-child .future-info article:nth-child(3) {
    animation-delay: 880ms;
}

@keyframes hero-pop-in {
    from {
        opacity: 0;
        transform: translateY(-14px) scale(0.86) rotate(-3deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

@keyframes hero-drop-in {
    from {
        opacity: 0;
        transform: translateY(-18px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hero-preview-left-in {
    from {
        opacity: 0;
        transform: translate(-34%, -50%) rotate(-8deg) scale(0.78);
    }
    to {
        opacity: 0.72;
        transform: translate(-10%, -50%) rotate(-2.5deg) scale(1);
    }
}

@keyframes hero-preview-right-in {
    from {
        opacity: 0;
        transform: translate(34%, -50%) rotate(8deg) scale(0.78);
    }
    to {
        opacity: 0.72;
        transform: translate(10%, -50%) rotate(2.5deg) scale(1);
    }
}

@keyframes hero-card-pop-in {
    0% {
        opacity: 0;
        transform: translateY(34px) scale(0.88) rotate(-2deg);
        filter: blur(12px);
    }
    68% {
        opacity: 1;
        transform: translateY(-7px) scale(1.025) rotate(0.8deg);
        filter: blur(1.5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
        filter: blur(0);
    }
}

@keyframes hero-badge-in {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(14px) scale(0.94);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes hero-cta-in {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(18px) scale(0.94);
    }
    72% {
        opacity: 1;
        transform: translateX(-50%) translateY(-2px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes hero-step-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-scrim {
    position: fixed;
    inset: 8px;
    z-index: 9998;
    border-radius: var(--radius);
    background: rgba(17, 17, 17, 0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
}

.hero-menu {
    position: fixed;
    inset: 8px;
    z-index: 9999;
    pointer-events: none;
}

.menu-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    width: min(430px, calc(100% - 40px));
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 28px;
    color: #153f3b;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.78),
            rgba(255, 255, 255, 0.46)
        ),
        rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: 0 24px 70px rgba(18, 87, 81, 0.18);
    -webkit-backdrop-filter: blur(26px) saturate(140%);
    backdrop-filter: blur(26px) saturate(140%);
    opacity: 0;
    transform: translateX(34px) scale(0.98);
    transition:
        opacity 280ms ease,
        transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-open .menu-scrim {
    opacity: 1;
    pointer-events: auto;
}

.menu-open .hero-menu {
    pointer-events: none;
}

.menu-open .menu-panel {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.menu-panel-top {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.menu-round-action,
.menu-close {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(124, 205, 200, 0.24);
    color: #236d68;
    box-shadow: inset 0 0 0 1px rgba(35, 109, 104, 0.08);
}

.menu-round-action span {
    font-size: 15px;
    font-weight: 800;
    font-style: italic;
}

.menu-close {
    position: relative;
}

.menu-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #236d68;
}

.menu-close span:first-child {
    transform: rotate(45deg);
}

.menu-close span:last-child {
    transform: rotate(-45deg);
}

.menu-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 42px;
}

.menu-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 6px 12px;
    border: 1px solid rgba(35, 109, 104, 0.2);
    border-radius: 999px;
    color: rgba(21, 63, 59, 0.76);
    font-size: 11px;
    font-weight: 800;
}

.menu-brand {
    margin-top: 44px;
    max-width: 330px;
}

.menu-brand p {
    margin: 0 0 14px;
    color: rgba(21, 63, 59, 0.62);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-brand h2 {
    margin: 0;
    font-size: 31px;
    line-height: 1.14;
    letter-spacing: 0;
}

.menu-links {
    display: grid;
    gap: 6px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.menu-links a {
    display: flex;
    align-items: center;
    min-height: 38px;
    border-bottom: 1px solid rgba(21, 63, 59, 0.12);
    color: rgba(21, 63, 59, 0.82);
    font-size: 15px;
    font-weight: 700;
    transition:
        color 180ms ease,
        padding-left 180ms ease;
}

.menu-links a:hover {
    color: #153f3b;
    padding-left: 8px;
}

.menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 48px;
    margin-top: auto;
    padding: 13px 24px;
    border-radius: 999px;
    background: #7ccdc8;
    color: #103633;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(18, 87, 81, 0.18);
}

.service-hero-card {
    color: #17181c;
    background:
        linear-gradient(180deg, #fff 0%, #fff 42%, rgba(255, 255, 255, 0) 58%),
        radial-gradient(
            circle at 50% 53%,
            rgba(185, 246, 232, 0.72),
            rgba(185, 246, 232, 0) 25%
        ),
        radial-gradient(
            circle at 18% 78%,
            rgba(195, 231, 255, 0.95),
            rgba(195, 231, 255, 0) 34%
        ),
        radial-gradient(
            circle at 88% 66%,
            rgba(220, 195, 255, 0.88),
            rgba(220, 195, 255, 0) 35%
        ),
        linear-gradient(180deg, #ffffff 0%, #eefbff 64%, #dff2ff 100%);
}

.service-hero-card::before {
    content: "";
    position: absolute;
    inset: 43% 0 0;
    z-index: 0;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.18) 0 3px,
            rgba(104, 184, 230, 0.08) 3px 9px,
            transparent 9px 18px
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.74), transparent 36%);
    filter: blur(0.2px);
    pointer-events: none;
}

.service-hero-card .future-nav {
    color: #17181c;
}

.service-hero-card .future-logo {
    color: #17181c;
}

.service-hero-card .search-button {
    background: rgba(17, 24, 39, 0.07);
}

.service-hero-card .search-button span {
    border-color: #17181c;
}

.service-hero-card .search-button span::after,
.service-hero-card .future-nav .menu-toggle span {
    background: #17181c;
}

.service-hero-card .nav-book {
    background: #7ccdc8;
    color: #17181c;
    box-shadow: 0 14px 30px rgba(34, 118, 112, 0.2);
}

.service-hero-card .scroll-indicator {
    display: none;
}

.service-hero-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    grid-template-rows: minmax(360px, 48%) minmax(0, 1fr);
    overflow: hidden;
}

.service-hero-copy {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    padding: clamp(116px, 12vh, 152px) clamp(22px, 5vw, 80px) 0;
    text-align: center;
}

.service-hero-mark {
    width: clamp(34px, 3.1vw, 46px);
    height: clamp(34px, 3.1vw, 46px);
    margin-bottom: clamp(22px, 2.8vh, 34px);
    object-fit: contain;
}

.service-hero-copy h1 {
    max-width: 1040px;
    margin: 0;
    color: #202126;
    font-family: "Geologica", var(--font);
    font-size: clamp(44px, 4.8vw, 76px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: 0;
    text-wrap: balance;
}

.service-hero-copy p {
    max-width: 780px;
    margin: clamp(16px, 2.2vh, 24px) 0 0;
    color: rgba(32, 33, 38, 0.68);
    font-size: clamp(16px, 1.22vw, 21px);
    line-height: 1.32;
    font-weight: 700;
}

.service-hero-cta,
.service-hero-cta:hover {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
}

.service-hero-cta {
    margin-top: clamp(28px, 4vh, 46px);
}

.service-hero-cta:hover {
    transform: translateY(-2px);
}

.service-hero-visual {
    position: relative;
    z-index: 2;
    min-height: 0;
}

.service-hero-card-stack {
    position: absolute;
    left: 50%;
    bottom: clamp(-72px, -5vh, -42px);
    width: min(1540px, 94vw);
    height: min(520px, 50vh);
    transform: translateX(-50%);
}

.service-photo-card {
    --card-transform: none;
    position: absolute;
    bottom: 0;
    margin: 0;
    overflow: hidden;
    border: clamp(4px, 0.48vw, 7px) solid #000;
    border-radius: clamp(24px, 2.4vw, 36px);
    background: #dce7e6;
    box-shadow:
        0 28px 64px rgba(67, 96, 104, 0.24),
        0 3px 0 rgba(255, 255, 255, 0.64) inset;
    opacity: 0;
    transform: var(--card-transform) translateY(72px) scale(0.94);
    transform-origin: 50% 100%;
    animation: service-card-spring-in 560ms cubic-bezier(0.2, 0.9, 0.22, 1)
        forwards;
    animation-delay: var(--card-delay, 0ms);
    will-change: transform, opacity;
}

.service-photo-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.03);
}

.card-study {
    --card-transform: rotate(-7deg);
    --card-delay: 70ms;
    left: 1%;
    z-index: 1;
    width: 29%;
    height: 94%;
}

.card-counseling {
    --card-transform: rotate(7deg) translateY(4%);
    --card-delay: 150ms;
    left: 27%;
    z-index: 3;
    width: 30%;
    height: 92%;
}

.card-plan {
    --card-transform: rotate(-5deg) translateY(9%);
    --card-delay: 230ms;
    left: 52%;
    z-index: 4;
    width: 28%;
    height: 90%;
}

.card-future {
    --card-transform: rotate(7deg) translateY(3%);
    --card-delay: 310ms;
    right: 1%;
    z-index: 2;
    width: 31%;
    height: 96%;
}

@keyframes service-card-spring-in {
    0% {
        opacity: 0;
        transform: var(--card-transform) translateY(72px) scale(0.94);
    }

    68% {
        opacity: 1;
        transform: var(--card-transform) translateY(-6px) scale(1.008);
    }

    84% {
        opacity: 1;
        transform: var(--card-transform) translateY(2px) scale(0.998);
    }

    100% {
        opacity: 1;
        transform: var(--card-transform);
    }
}

.service-floating-pill {
    position: absolute;
    z-index: 7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: clamp(48px, 4.6vw, 62px);
    padding: 12px clamp(20px, 2vw, 30px);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #17181c;
    font-size: clamp(17px, 1.35vw, 24px);
    font-weight: 800;
    box-shadow: 0 16px 42px rgba(57, 79, 93, 0.18);
    transform: rotate(5deg);
}

.service-floating-pill b {
    color: rgba(23, 24, 28, 0.68);
    font-size: 28px;
    line-height: 0.8;
}

.service-floating-pill em {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c00491;
}

.pill-before {
    left: 24%;
    bottom: 14%;
}

.pill-after {
    right: 22%;
    bottom: 18%;
    transform: rotate(-4deg);
}

.pill-after em {
    background: #68df55;
}

.mixanografiko-page .service-hero-card {
    background:
        linear-gradient(180deg, #fff 0%, #fff 42%, rgba(255, 255, 255, 0) 58%),
        radial-gradient(
            circle at 50% 53%,
            rgba(247, 231, 151, 0.78),
            rgba(247, 231, 151, 0) 26%
        ),
        radial-gradient(
            circle at 18% 78%,
            rgba(217, 196, 248, 0.74),
            rgba(217, 196, 248, 0) 34%
        ),
        radial-gradient(
            circle at 88% 66%,
            rgba(46, 97, 35, 0.22),
            rgba(46, 97, 35, 0) 36%
        ),
        linear-gradient(180deg, #ffffff 0%, #fdf8df 62%, #efe8fb 100%);
}

.mixanografiko-page .service-hero-card::before {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.2) 0 3px,
            rgba(46, 97, 35, 0.08) 3px 9px,
            transparent 9px 18px
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), transparent 36%);
}

.mixanografiko-page .service-hero-card .nav-book,
.mixanografiko-page .menu-cta {
    background: var(--mix-accent);
    color: #17181c;
    box-shadow: 0 14px 30px rgba(120, 103, 31, 0.18);
}

.mixanografiko-page .service-photo-card {
    box-shadow:
        0 28px 64px rgba(70, 51, 99, 0.18),
        0 3px 0 rgba(255, 255, 255, 0.64) inset;
}

.metaptyxiako-page .service-hero-card {
    background:
        linear-gradient(180deg, #fff 0%, #fff 42%, rgba(255, 255, 255, 0) 58%),
        radial-gradient(
            circle at 50% 53%,
            rgba(217, 196, 248, 0.72),
            rgba(217, 196, 248, 0) 26%
        ),
        radial-gradient(
            circle at 18% 78%,
            rgba(124, 205, 200, 0.66),
            rgba(124, 205, 200, 0) 34%
        ),
        radial-gradient(
            circle at 88% 66%,
            rgba(164, 200, 126, 0.56),
            rgba(164, 200, 126, 0) 36%
        ),
        linear-gradient(180deg, #ffffff 0%, #f3edfd 62%, #e8f6f3 100%);
}

.metaptyxiako-page .service-hero-card::before {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.22) 0 3px,
            rgba(46, 97, 35, 0.08) 3px 9px,
            transparent 9px 18px
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), transparent 36%);
}

.metaptyxiako-page .service-hero-card .nav-book,
.metaptyxiako-page .menu-cta {
    background: var(--postgrad-lavender);
    color: #17181c;
    box-shadow: 0 14px 30px rgba(99, 70, 135, 0.2);
}

.metaptyxiako-page .service-photo-card {
    background: #f2eef8;
    box-shadow:
        0 28px 64px rgba(61, 75, 69, 0.18),
        0 3px 0 rgba(255, 255, 255, 0.66) inset;
}

.meteggrafes-page .service-hero-card {
    background:
        linear-gradient(180deg, #fff 0%, #fff 42%, rgba(255, 255, 255, 0) 58%),
        radial-gradient(
            circle at 50% 53%,
            rgba(134, 208, 223, 0.72),
            rgba(134, 208, 223, 0) 26%
        ),
        radial-gradient(
            circle at 18% 78%,
            rgba(164, 200, 126, 0.58),
            rgba(164, 200, 126, 0) 34%
        ),
        radial-gradient(
            circle at 88% 66%,
            rgba(46, 97, 35, 0.24),
            rgba(46, 97, 35, 0) 36%
        ),
        linear-gradient(180deg, #ffffff 0%, #eaf6f8 62%, #edf2e8 100%);
}

.meteggrafes-page .service-hero-card::before {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.22) 0 3px,
            rgba(46, 97, 35, 0.08) 3px 9px,
            transparent 9px 18px
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), transparent 36%);
}

.meteggrafes-page .service-hero-card .nav-book,
.meteggrafes-page .menu-cta {
    background: var(--transfer-blue);
    color: #17181c;
    box-shadow: 0 14px 30px rgba(39, 114, 128, 0.2);
}

.meteggrafes-page .service-photo-card {
    background: #eef1eb;
    box-shadow:
        0 28px 64px rgba(46, 97, 35, 0.18),
        0 3px 0 rgba(255, 255, 255, 0.66) inset;
}

.diaxeirisi-page .service-hero-card {
    background:
        linear-gradient(180deg, #fff 0%, #fff 42%, rgba(255, 255, 255, 0) 58%),
        radial-gradient(
            circle at 50% 53%,
            rgba(124, 205, 200, 0.78),
            rgba(124, 205, 200, 0) 26%
        ),
        radial-gradient(
            circle at 18% 78%,
            rgba(184, 221, 122, 0.72),
            rgba(184, 221, 122, 0) 34%
        ),
        radial-gradient(
            circle at 88% 66%,
            rgba(247, 231, 151, 0.6),
            rgba(247, 231, 151, 0) 36%
        ),
        linear-gradient(180deg, #ffffff 0%, #eaf8f5 62%, #edf6dc 100%);
}

.diaxeirisi-page .service-hero-card::before {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.22) 0 3px,
            rgba(46, 97, 35, 0.08) 3px 9px,
            transparent 9px 18px
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), transparent 36%);
}

.diaxeirisi-page .service-hero-card .nav-book,
.diaxeirisi-page .menu-cta {
    background: var(--time-leaf);
    color: #17181c;
    box-shadow: 0 14px 30px rgba(46, 97, 35, 0.18);
}

.diaxeirisi-page .service-photo-card {
    background: #e7f3ef;
    box-shadow:
        0 28px 64px rgba(33, 93, 82, 0.18),
        0 3px 0 rgba(255, 255, 255, 0.66) inset;
}

.book-now-page {
    --book-green: #2e6123;
    --book-deep: #173b19;
    --book-teal: #7ccdc8;
    --book-yellow: #f7e797;
    --book-sage: #a4c87e;
    --book-lavender: #d9c4f8;
    --book-cream: #fbfbf8;
}

.book-now-page .hero-shell {
    background:
        linear-gradient(
            180deg,
            rgba(251, 251, 248, 0.7) 0%,
            rgba(124, 205, 200, 0.22) 52%,
            rgba(23, 59, 25, 0.5) 100%
        ),
        url("assets/contact-bg.jpg") center / cover no-repeat;
}

.book-hero-card {
    min-height: calc(100svh - 16px);
    padding: clamp(112px, 9vw, 142px) clamp(24px, 4vw, 58px)
        clamp(28px, 4vw, 58px);
    color: #111;
    background: #fbfbf8;
    overflow: hidden;
}

.book-hero-card::before {
    content: none;
}

.book-now-page .future-nav {
    color: #111;
}

.book-now-page .future-logo {
    color: #111;
}

.book-now-page .search-button {
    background: rgba(46, 97, 35, 0.08);
}

.book-now-page .search-button span {
    border-color: #173b19;
}

.book-now-page .search-button span::after,
.book-now-page .future-nav .menu-toggle span {
    background: #173b19;
}

.book-now-page .nav-book,
.book-now-page .menu-cta {
    background: var(--book-teal);
    color: #103633;
    box-shadow: 0 14px 32px rgba(34, 118, 112, 0.22);
}

.book-stage {
    position: relative;
    z-index: 1;
    min-height: calc(100svh - clamp(178px, 14vw, 236px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
    grid-template-rows: auto auto;
    align-items: start;
    align-content: start;
    gap: clamp(18px, 2.6vw, 42px);
    padding: clamp(26px, 3vw, 48px);
    border-radius: clamp(28px, 3vw, 44px);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.7),
            rgba(255, 255, 255, 0.38)
        ),
        rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(46, 97, 35, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
    overflow: hidden;
}

.book-stage > *,
.calendly-panel,
.booking-preview,
.book-contact-panel {
    min-width: 0;
}

.book-stage-copy {
    position: relative;
    z-index: 3;
    grid-column: 1;
    grid-row: 1;
    max-width: 760px;
    align-self: start;
    padding: 0;
}

.book-stage-copy h1 {
    max-width: 660px;
    margin: 0;
    color: #164f4a;
    font-family: "Geologica", var(--font);
    font-size: clamp(34px, 3.7vw, 58px);
    line-height: 1;
    letter-spacing: 0;
    text-wrap: balance;
}

.book-stage-copy > span {
    display: block;
    max-width: 620px;
    margin-top: clamp(12px, 1.3vw, 18px);
    color: rgba(17, 17, 17, 0.58);
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.55;
    font-weight: 700;
}

.book-balance-art {
    position: absolute;
    z-index: 1;
    left: 53%;
    top: 14%;
    width: min(360px, 30vw);
    height: min(570px, 62vh);
    transform: translateX(-10%);
    pointer-events: none;
}

.stone {
    position: absolute;
    left: 50%;
    display: block;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow:
        inset -18px -18px 36px rgba(54, 64, 47, 0.16),
        inset 18px 16px 34px rgba(255, 255, 255, 0.72),
        0 18px 38px rgba(42, 52, 37, 0.12);
}

.stone::after {
    content: "";
    position: absolute;
    inset: 12% 18% auto;
    height: 24%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.32);
    filter: blur(8px);
}

.stone-top {
    top: 0;
    width: 52%;
    height: 13%;
    background: #d8d4c8;
}

.stone-yellow {
    top: 12%;
    width: 68%;
    height: 18%;
    background: var(--book-yellow);
}

.stone-lavender {
    top: 27%;
    width: 82%;
    height: 24%;
    background: #e8c1aa;
}

.stone-sage {
    top: 47%;
    width: 96%;
    height: 20%;
    background: #818f54;
}

.stone-base {
    top: 63%;
    width: 112%;
    height: 34%;
    background:
        radial-gradient(circle, rgba(35, 35, 31, 0.42) 0 1px, transparent 2px) 0
            0 / 16px 16px,
        #e6dfcc;
}

.calendly-panel {
    position: relative;
    z-index: 4;
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 760px);
    align-self: stretch;
    margin-left: clamp(4px, 1vw, 18px);
    margin-top: clamp(20px, 2.2vw, 34px);
    min-height: clamp(540px, 37vw, 640px);
    padding: clamp(18px, 1.7vw, 28px);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(46, 97, 35, 0.1);
    box-shadow:
        0 24px 56px rgba(44, 58, 39, 0.14),
        inset 0 0 0 1px rgba(255, 255, 255, 0.76);
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: clamp(14px, 1.4vw, 22px);
}

.booking-steps span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(17, 17, 17, 0.42);
    font-size: 13px;
    font-weight: 800;
    white-space: normal;
}

.booking-steps b {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.08);
    color: rgba(17, 17, 17, 0.42);
    font-size: 14px;
}

.booking-steps .is-active {
    color: #173b19;
}

.booking-steps .is-active b {
    background: var(--book-teal);
    color: #103633;
}

.service-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(14px, 1.4vw, 22px);
}

.service-chip-list span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 19px;
    border-radius: 999px;
    color: rgba(17, 17, 17, 0.58);
    font-size: 13px;
    font-weight: 800;
    max-width: 100%;
    white-space: normal;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(46, 97, 35, 0.13);
}

.service-chip-list .is-selected {
    background: var(--book-teal);
    color: #103633;
    box-shadow: 0 12px 24px rgba(34, 118, 112, 0.18);
}

.booking-preview {
    display: grid;
    grid-template-columns: minmax(220px, 0.76fr) minmax(210px, 0.7fr);
    gap: clamp(16px, 2vw, 28px);
    padding-top: clamp(14px, 1.3vw, 20px);
    border-top: 1px solid rgba(46, 97, 35, 0.12);
}

.calendar-topline {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 18px;
    color: #111;
}

.calendar-topline strong,
.time-slot-card strong {
    color: rgba(17, 17, 17, 0.8);
    font-size: 13px;
    font-weight: 900;
}

.calendar-topline span {
    color: #24736d;
    font-size: 22px;
    line-height: 1;
}

.calendar-week,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-week {
    gap: 8px;
    margin-top: 16px;
    color: rgba(17, 17, 17, 0.44);
    font-size: 10px;
    font-weight: 900;
}

.calendar-week span {
    text-align: center;
}

.calendar-grid {
    gap: 9px;
    margin-top: 10px;
}

.calendar-grid span {
    aspect-ratio: 1;
    border-radius: 6px;
    background: rgba(17, 17, 17, 0.06);
}

.calendar-grid .is-date {
    display: grid;
    place-items: center;
    background: rgba(124, 205, 200, 0.72);
    color: #103633;
    font-size: 13px;
    font-weight: 900;
}

.time-slot-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: start;
    gap: 12px;
}

.time-slot-card strong {
    grid-column: 1 / -1;
    margin-bottom: 6px;
}

.time-slot-card span {
    min-height: 17px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.06);
}

.calendly-placeholder {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 74px;
    margin-top: clamp(14px, 1.6vw, 24px);
    padding: 16px 18px;
    border: 1px dashed rgba(0, 143, 137, 0.42);
    border-radius: 16px;
    color: #24736d;
    background: rgba(124, 205, 200, 0.1);
}

.calendly-placeholder span {
    width: 34px;
    height: 34px;
    border: 3px solid #4a9f98;
    border-radius: 9px;
    position: relative;
}

.calendly-placeholder span::before,
.calendly-placeholder span::after {
    content: "";
    position: absolute;
    top: -7px;
    width: 4px;
    height: 10px;
    border-radius: 999px;
    background: #4a9f98;
}

.calendly-placeholder span::before {
    left: 7px;
}

.calendly-placeholder span::after {
    right: 7px;
}

.calendly-placeholder p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
}

.book-contact-panel {
    position: relative;
    z-index: 5;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
    min-height: 0;
    padding: clamp(22px, 2.2vw, 34px);
    border-radius: clamp(30px, 3.2vw, 50px);
    color: #fff;
    background:
        linear-gradient(
            145deg,
            rgba(42, 82, 75, 0.66),
            rgba(112, 132, 119, 0.42)
        ),
        rgba(41, 74, 67, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow:
        0 26px 70px rgba(34, 61, 54, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(26px) saturate(120%);
    backdrop-filter: blur(26px) saturate(120%);
    overflow: hidden;
}

.book-contact-panel::before {
    content: "";
    position: absolute;
    inset: -12% -18%;
    background:
        radial-gradient(
            circle at 24% 38%,
            rgba(247, 231, 151, 0.28),
            transparent 17%
        ),
        radial-gradient(
            circle at 48% 62%,
            rgba(124, 205, 200, 0.22),
            transparent 24%
        ),
        radial-gradient(
            circle at 82% 12%,
            rgba(217, 196, 248, 0.18),
            transparent 23%
        );
    filter: blur(18px);
    pointer-events: none;
}

.book-contact-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(124, 205, 200, 0.2);
}

.book-contact-icon span {
    width: 25px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 6px;
    position: relative;
}

.book-contact-icon span::before {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    top: 4px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.92);
    border-bottom: 2px solid rgba(255, 255, 255, 0.92);
    transform: rotate(45deg);
}

.book-contact-art {
    position: absolute;
    z-index: 1;
    top: clamp(28px, 3.2vw, 58px);
    right: clamp(22px, 2.6vw, 44px);
    width: clamp(68px, 6.2vw, 96px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7)),
        rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.74),
        0 18px 42px rgba(32, 51, 43, 0.18);
}

.book-contact-art img {
    width: 54%;
    height: 54%;
    object-fit: contain;
    filter: drop-shadow(0 10px 16px rgba(17, 17, 17, 0.12));
}

.book-contact-panel > p,
.book-contact-panel h2,
.book-contact-note,
.book-contact-list {
    position: relative;
    z-index: 2;
}

.book-contact-panel > p {
    width: min(64%, 300px);
    margin: clamp(28px, 5vh, 54px) 0 0;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(247, 231, 151, 0.58);
    color: #fff;
    font-family: "Geologica", var(--font);
    font-size: clamp(30px, 2.7vw, 46px);
    line-height: 0.98;
    font-weight: 800;
}

.book-contact-panel h2 {
    max-width: 390px;
    margin: clamp(22px, 2vw, 30px) 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font);
    font-size: clamp(18px, 1.4vw, 24px);
    line-height: 1.42;
    font-weight: 800;
}

.book-contact-note {
    display: block;
    max-width: 400px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.6;
    font-weight: 700;
}

.book-contact-list {
    display: grid;
    margin-top: clamp(26px, 4vh, 46px);
    font-style: normal;
}

.book-contact-list a {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 62px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(15px, 1.12vw, 20px);
    line-height: 1.2;
    font-weight: 800;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.book-contact-list a:hover {
    color: #fff;
    transform: translateX(5px);
}

.book-contact-list span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(124, 205, 200, 0.18);
    color: #fff;
    font-size: 17px;
    font-weight: 900;
}

@media (max-width: 980px) {
    :root {
        --footer-reveal-height: clamp(500px, 66svh, 650px);
    }

    .hero-shell {
        min-height: 100svh;
        height: auto;
        padding: var(--shell-pad);
        padding-bottom: calc(var(--footer-reveal-height) + var(--shell-pad));
        align-items: start;
    }

    .hero-card {
        width: 100%;
        min-height: calc(100svh - 16px);
        height: auto;
        display: grid;
        grid-template-rows: auto auto auto;
        padding: 92px clamp(28px, 6vw, 48px) 64px;
        border-radius: 28px;
    }

    .hero-nav {
        top: 27px;
        left: clamp(28px, 7vw, 58px);
        right: clamp(28px, 7vw, 58px);
    }

    .hero-copy {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        transform: none;
        z-index: 5;
    }

    .hero-copy h1 {
        max-width: 560px;
        font-size: clamp(38px, 7.2vw, 50px);
    }

    .hero-text {
        width: min(100%, 430px);
    }

    .hero-visual {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: clamp(300px, 48vw, 390px);
        margin-top: 8px;
        place-items: end center;
    }

    .visual-slide {
        place-items: center;
    }

    .accent-circle {
        right: 50%;
        top: 12%;
        width: min(390px, 78vw);
        transform: translateX(50%);
    }

    .students-image {
        width: min(520px, 100%);
    }

    .image-glass-card {
        left: clamp(120px, 23vw, 210px);
        bottom: 46px;
        width: min(260px, 64%);
    }

    .pagination-dots {
        right: 24px;
    }

    .social-links {
        left: clamp(28px, 7vw, 58px);
        bottom: 28px;
    }

    .scroll-indicator {
        right: clamp(28px, 7vw, 58px);
        bottom: 24px;
    }

    .bento-shell {
        margin-top: 0;
        padding: var(--shell-pad) 0 0;
    }

    .bento-card {
        width: 100%;
        min-height: auto;
        padding: clamp(24px, 4vw, 38px);
        padding-bottom: clamp(48px, 7vw, 76px);
        border-radius: 28px;
    }

    .service-page-card {
        padding: clamp(16px, 3vw, 28px);
        padding-bottom: clamp(42px, 6vw, 68px);
    }

    .bento-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 18px;
    }

    .service-info-section {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .service-info-section::before,
    .service-info-section::after {
        display: none;
    }

    .service-info-intro {
        padding: clamp(32px, 4.8vw, 46px);
    }

    .service-info-intro h2 {
        max-width: 720px;
        font-size: clamp(38px, 5.2vw, 48px);
    }

    .service-info-intro > span {
        max-width: 680px;
    }

    .service-info-panels {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        border-top: 1px solid rgba(46, 97, 35, 0.08);
    }

    .service-info-panels article {
        padding: clamp(32px, 4.8vw, 50px);
    }

    .service-info-panels article + article {
        border-top: 0;
        border-left: 1px solid rgba(46, 97, 35, 0.08);
    }

    .service-info-portrait {
        min-height: 510px;
        border-top: 1px solid rgba(46, 97, 35, 0.08);
    }

    .service-info-portrait img {
        right: -18%;
        top: 0;
        width: 116%;
        height: 100%;
    }

    .service-depth-section {
        padding: clamp(32px, 4.8vw, 50px);
    }

    .service-depth-section::before {
        background: linear-gradient(
            180deg,
            transparent 46%,
            rgba(46, 97, 35, 0.07) 46%,
            transparent calc(46% + 1px)
        );
    }

    .service-depth-header {
        grid-template-columns: 1fr;
        margin-bottom: 34px;
    }

    .service-depth-header h2,
    .service-depth-header span {
        max-width: 720px;
    }

    .service-depth-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-depth-image {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 520px;
    }

    .service-depth-grade-map {
        grid-column: 1 / -1;
    }

    .service-outcomes-section {
        grid-template-columns: 1fr;
        padding: clamp(32px, 4.8vw, 50px);
    }

    .service-outcomes-section::before {
        background: linear-gradient(
            180deg,
            transparent 45%,
            rgba(46, 97, 35, 0.06) 45%,
            transparent calc(45% + 1px)
        );
    }

    .service-outcomes-copy {
        min-height: auto;
    }

    .service-outcomes-copy h2,
    .service-outcomes-copy > span {
        max-width: 720px;
    }

    .service-outcomes-image {
        min-height: 420px;
        margin-top: 34px;
    }

    .service-outcomes-lists article {
        min-height: auto;
    }

    .bento-feature,
    .bento-blue,
    .bento-sleep,
    .bento-chart,
    .bento-weight {
        grid-column: span 6;
    }

    .bento-feature {
        min-height: 430px;
    }

    .bento-students {
        width: min(390px, 62%);
        right: -6%;
    }

    .bento-blue {
        min-height: 320px;
    }

    .service-showcase {
        grid-template-columns: 1fr;
        padding: 0;
        border-radius: 32px;
        min-height: auto;
    }

    .service-showcase-reverse .service-copy-panel {
        order: -1;
    }

    .service-showcase-reverse .service-image-panel {
        order: 0;
    }

    .service-panel {
        min-height: 300px;
        border-width: 12px;
    }

    .service-image-panel {
        min-height: clamp(340px, 56vw, 430px);
    }

    .mini-services {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 34px;
        margin-bottom: 38px;
    }

    .mini-service {
        min-height: 220px;
        border-radius: 28px;
    }

    .faq-section {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 34px;
        margin-bottom: 34px;
        border-radius: 28px;
    }

    .webinars-section {
        margin-top: 34px;
        margin-bottom: 34px;
        padding: 34px 28px;
    }

    .webinar-card {
        grid-template-columns: 104px minmax(0, 1fr) auto;
        gap: 24px;
        border-radius: 8px;
    }

    .webinars-hero {
        max-width: 680px;
    }

    .book-now-section {
        min-height: 430px;
        margin-top: 34px;
        margin-bottom: 34px;
        padding: 36px 28px;
        border-radius: 28px;
    }

    .blog-section {
        margin-top: 34px;
        margin-bottom: 34px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .blog-card {
        display: grid;
        grid-template-columns: 180px minmax(0, 1fr);
        border-radius: 22px;
    }

    .blog-card img {
        height: 100%;
        aspect-ratio: auto;
    }

    .faq-heading {
        position: static;
    }

    .service-copy-panel {
        padding: 34px 30px;
    }

    .footer-card {
        min-height: var(--footer-reveal-height);
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "form"
            "contact";
        align-items: start;
        padding: clamp(86px, 10vw, 128px) clamp(28px, 4vw, 44px)
            clamp(34px, 4vw, 54px);
    }

    .service-hero-card {
        padding: 0;
    }

    .service-hero-content {
        grid-template-rows: minmax(360px, 50%) minmax(0, 1fr);
    }

    .service-hero-copy {
        justify-content: end;
        padding: 86px clamp(24px, 6vw, 48px) 0;
    }

    .service-hero-copy h1 {
        max-width: 780px;
        font-size: clamp(44px, 8vw, 66px);
    }

    .service-hero-copy p {
        max-width: 620px;
        font-size: clamp(16px, 2.4vw, 21px);
    }

    .service-hero-card-stack {
        bottom: clamp(-58px, -4vh, -34px);
        width: min(1100px, 112vw);
        height: min(450px, 44vh);
    }

    .card-study {
        left: -5%;
        width: 34%;
    }

    .card-counseling {
        left: 25%;
        width: 34%;
    }

    .card-plan {
        left: 53%;
        width: 32%;
    }

    .card-future {
        right: -7%;
        width: 35%;
    }
}

@media (min-width: 700px) and (max-width: 980px) {
    .hero-card {
        align-content: start;
    }

    .hero-copy {
        max-width: 620px;
    }

    .hero-text {
        margin-top: 16px;
    }

    .hero-cta {
        margin-top: 22px;
    }

    .hero-visual {
        height: min(38svh, 360px);
        margin-top: 4px;
    }

    .accent-circle {
        width: min(340px, 48vw);
        top: 6%;
    }

    .students-image {
        width: min(420px, 58vw);
        height: 96%;
    }

    .image-glass-card {
        left: 50%;
        bottom: 18px;
        transform: translateX(-50%) translateY(18px);
    }

    .visual-slide.is-active .image-glass-card {
        transform: translateX(-50%) translateY(0);
    }

    .bento-card {
        padding: 32px;
    }

    .bento-heading {
        margin-bottom: 24px;
    }

    .bento-heading h2 {
        max-width: 680px;
        font-size: clamp(42px, 5vw, 50px);
    }

    .bento-tile {
        padding: 28px;
        border-radius: 28px;
    }

    .bento-feature {
        min-height: 390px;
    }

    .bento-feature h3 {
        max-width: 480px;
        font-size: 38px;
    }

    .bento-students {
        width: min(360px, 50%);
        right: -4%;
        bottom: -10%;
    }

    .bento-blue {
        min-height: 280px;
    }

    .service-copy-panel h2 {
        max-width: 600px;
        font-size: 48px;
    }
}

@media (max-width: 620px) {
    :root {
        --footer-reveal-height: calc(100svh - 16px);
    }

    .hero-shell {
        padding: var(--shell-pad);
        padding-bottom: calc(var(--footer-reveal-height) + var(--shell-pad));
    }

    .hero-card {
        min-height: calc(100svh - 16px);
        padding: 92px 24px 76px;
        border-radius: 24px;
    }

    .hero-nav {
        top: 23px;
        left: 24px;
        right: 20px;
    }

    .logo-button {
        width: 42px;
        height: 42px;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-book {
        min-height: 40px;
        padding: 11px 16px;
        font-size: 10px;
        border-radius: 10px;
    }

    .hero-kicker {
        max-width: 220px;
        margin-bottom: 14px;
        font-size: 10px;
        line-height: 1.4;
    }

    .hero-copy h1 {
        font-size: 38px;
        line-height: 1.05;
    }

    .hero-text {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.55;
    }

    .hero-cta {
        min-height: 52px;
        margin-top: 24px;
        padding: 15px 26px;
    }

    .hero-visual {
        height: 315px;
        margin-top: 20px;
    }

    .visual-slide {
        clip-path: inset(0 0 0 18% round 28px);
    }

    .accent-circle {
        width: min(310px, 78vw);
        top: 15%;
    }

    .contact-shadow {
        bottom: 5px;
        width: 72%;
    }

    .image-glass-card {
        left: 50%;
        bottom: 24px;
        width: min(232px, 72%);
        min-height: 92px;
        padding: 14px 16px;
        border-radius: 18px;
        transform: translateX(-50%) translateY(18px);
    }

    .visual-slide.is-active .image-glass-card {
        transform: translateX(-50%) translateY(0);
    }

    .image-glass-card p {
        font-size: 11px;
    }

    .pagination-dots {
        top: auto;
        right: 24px;
        bottom: 122px;
        transform: none;
        gap: 10px;
    }

    .bento-shell {
        margin-top: 0;
        padding: var(--shell-pad) 0 0;
    }

    .bento-card {
        padding: 24px;
        padding-bottom: 58px;
        border-radius: 24px;
    }

    .service-page-card {
        padding: 14px;
        padding-bottom: 46px;
    }

    .bento-heading {
        margin-bottom: 24px;
    }

    .bento-heading h2 {
        font-size: 34px;
    }

    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .service-info-section {
        border-radius: 24px;
    }

    .service-info-intro {
        padding: 28px 18px 28px;
    }

    .service-info-intro > p {
        margin-bottom: 18px;
        font-size: 10px;
    }

    .service-info-intro h2 {
        font-size: 34px;
        line-height: 1.02;
    }

    .service-info-intro > span {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.58;
    }

    .service-info-metrics {
        grid-template-columns: 1fr;
        margin-top: 34px;
    }

    .service-info-metrics article {
        min-height: 0;
        padding: 22px 0;
    }

    .service-info-metrics article + article {
        padding-left: 0;
        border-top: 1px solid rgba(46, 97, 35, 0.08);
        border-left: 0;
    }

    .service-info-metrics strong {
        margin-top: 14px;
        font-size: 26px;
    }

    .service-info-panels {
        grid-template-columns: 1fr;
    }

    .service-info-panels article {
        padding: 30px 18px;
    }

    .service-info-panels article + article {
        border-top: 1px solid rgba(46, 97, 35, 0.08);
        border-left: 0;
    }

    .service-info-panels span {
        height: 30px;
        font-size: 56px;
    }

    .service-info-panels p {
        margin-top: 12px;
        font-size: 17px;
        line-height: 1.48;
        font-weight: 600;
    }

    .service-info-panels small {
        margin-top: 20px;
    }

    .service-info-portrait {
        min-height: 390px;
    }

    .service-info-portrait::before {
        left: 10%;
        top: 9%;
        width: 30%;
        height: 62%;
        border-radius: 20px;
    }

    .service-info-portrait::after {
        right: -24%;
        width: 58%;
        border-radius: 26px 0 0 26px;
    }

    .service-info-portrait img {
        right: -30%;
        top: 0;
        bottom: auto;
        width: 142%;
        height: 100%;
        object-position: 64% 50%;
    }

    .service-info-section + .service-depth-section,
    .service-depth-section + .service-outcomes-section,
    .service-outcomes-section + .book-now-section {
        margin-top: 34px;
    }

    .service-depth-section {
        padding: 26px 18px;
        border-radius: 24px;
    }

    .service-depth-section::before {
        display: none;
    }

    .service-depth-header {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 22px;
    }

    .service-depth-header p {
        font-size: 10px;
        line-height: 1.35;
    }

    .service-depth-header h2 {
        font-size: 32px;
        line-height: 1.04;
    }

    .service-depth-header span {
        font-size: 14px;
        line-height: 1.58;
    }

    .service-depth-grid,
    .service-depth-grade-map {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-depth-image,
    .service-depth-card,
    .service-depth-grade-map {
        border-radius: 20px;
    }

    .service-depth-image {
        min-height: 430px;
    }

    .service-depth-card {
        min-height: auto;
        padding: 22px 20px;
    }

    .service-depth-card span {
        width: 36px;
        height: 36px;
    }

    .service-depth-card h3 {
        margin-top: 18px;
        font-size: 20px;
    }

    .service-depth-card p,
    .service-depth-grade-map p {
        font-size: 13px;
        line-height: 1.55;
    }

    .service-depth-grade-map {
        display: grid;
        overflow: visible;
        background: transparent;
        box-shadow: none;
    }

    .service-depth-grade-map article {
        min-height: auto;
        padding: 22px 20px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.68);
        box-shadow: inset 0 0 0 1px rgba(46, 97, 35, 0.08);
    }

    .service-depth-grade-map article + article {
        border-left: 0;
    }

    .service-outcomes-section {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 26px 18px;
        border-radius: 24px;
    }

    .service-outcomes-section::before {
        display: none;
    }

    .service-outcomes-copy > p {
        font-size: 10px;
        line-height: 1.35;
    }

    .service-outcomes-copy h2 {
        margin-top: 18px;
        font-size: 32px;
        line-height: 1.04;
    }

    .service-outcomes-copy > span {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.58;
    }

    .service-outcomes-image {
        min-height: 300px;
        margin-top: 28px;
        border-radius: 20px;
    }

    .service-outcomes-lists {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-outcomes-lists article {
        min-height: auto;
        padding: 22px 20px;
        border-radius: 20px;
    }

    .service-outcomes-lists ul {
        gap: 16px;
        margin-top: 22px;
    }

    .service-outcomes-lists li {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 13px;
    }

    .service-outcomes-lists li span {
        width: 30px;
        height: 30px;
    }

    .service-outcomes-lists li span::before {
        left: 10px;
        top: 8px;
        width: 8px;
        height: 12px;
    }

    .service-outcomes-lists p {
        font-size: 13px;
        line-height: 1.55;
    }

    .bento-tile {
        min-height: 260px;
        padding: 22px;
        border-radius: 24px;
    }

    .bento-feature {
        min-height: 430px;
    }

    .bento-feature h3 {
        max-width: 280px;
        font-size: 32px;
    }

    .bento-feature p {
        max-width: 250px;
    }

    .bento-students {
        right: -16%;
        bottom: -8%;
        width: 82%;
    }

    .bento-pill {
        left: 22px;
        right: auto;
        bottom: 22px;
        min-height: 46px;
        padding: 13px 20px;
    }

    .progress-cups {
        top: 92px;
        right: 22px;
        grid-template-columns: repeat(5, 18px);
        gap: 8px;
    }

    .progress-cups span {
        height: 24px;
    }

    .bento-blue strong {
        right: 22px;
        bottom: 58px;
    }

    .bento-blue small {
        right: 24px;
        bottom: 30px;
    }

    .bento-meetings .progress-cups {
        top: 88px;
        right: 28px;
        grid-template-columns: repeat(5, 16px);
        gap: 7px;
        opacity: 0.82;
    }

    .bento-meetings .progress-cups span {
        height: 21px;
    }

    .bento-meetings strong {
        right: auto;
        left: 28px;
        bottom: 76px;
        max-width: 58%;
        text-align: left;
        font-size: clamp(24px, 6.8vw, 32px);
        white-space: nowrap;
    }

    .bento-meetings small {
        right: auto;
        left: 28px;
        bottom: 42px;
        max-width: 58%;
        text-align: left;
        font-size: clamp(12px, 3.3vw, 15px);
        white-space: nowrap;
    }

    .tile-row {
        gap: 10px;
    }

    .tile-row h3 {
        font-size: 21px;
    }

    .tile-row strong {
        font-size: 20px;
    }

    .metric-row {
        flex-wrap: nowrap;
        gap: 8px;
        font-size: 10px;
        line-height: 1.25;
    }

    .service-showcase {
        gap: 12px;
        margin-top: 28px;
        padding: 0;
        border-radius: 28px;
    }

    .service-panel {
        min-height: 280px;
        border-width: 10px;
        border-radius: 22px;
    }

    .service-image-panel {
        min-height: clamp(360px, 72vw, 430px);
    }

    .mini-services {
        gap: 12px;
        margin-top: 30px;
        margin-bottom: 34px;
    }

    .mini-service {
        min-height: 200px;
        padding: 24px 20px;
        border-radius: 24px;
    }

    .mini-service strong {
        font-size: 31px;
    }

    .faq-section {
        margin-top: 30px;
        margin-bottom: 26px;
        padding: 24px 18px;
        border-radius: 24px;
    }

    .faq-heading h2 {
        font-size: 34px;
    }

    .faq-item {
        border-radius: 18px;
    }

    .faq-item summary {
        min-height: 62px;
        padding: 17px 52px 17px 18px;
        font-size: 16px;
    }

    .faq-item summary::after {
        right: 16px;
        width: 28px;
        height: 28px;
    }

    .faq-item p {
        padding: 0 18px 20px;
        font-size: 14px;
    }

    .webinars-section {
        margin-top: 30px;
        margin-bottom: 26px;
        padding: 26px 18px;
    }

    .webinars-grid {
        gap: 12px;
    }

    .webinar-card {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 18px;
        min-height: auto;
        padding: 22px 18px;
        border-radius: 8px;
    }

    .webinar-card time {
        grid-column: 2;
        justify-self: start;
        text-align: left;
    }

    .webinars-hero h2 {
        font-size: clamp(36px, 9vw, 44px);
        line-height: 0.96;
    }

    .webinar-card h3 {
        font-size: 18px;
        line-height: 1.14;
    }

    .book-now-section {
        min-height: 360px;
        margin-top: 30px;
        margin-bottom: 26px;
        padding: 28px 20px;
        border-radius: 24px;
    }

    .book-now-section::before {
        background:
            linear-gradient(0deg, rgba(8, 18, 16, 0.52), rgba(8, 18, 16, 0.12)),
            linear-gradient(90deg, rgba(8, 18, 16, 0.32), transparent);
    }

    .book-now-content h2 {
        font-size: 32px;
    }

    .book-now-content a {
        min-height: 52px;
        margin-top: 24px;
        padding: 15px 26px;
    }

    .blog-section {
        margin-top: 30px;
        margin-bottom: 26px;
    }

    .blog-heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-heading h2 {
        font-size: 30px;
    }

    .blog-heading > a {
        width: fit-content;
    }

    .blog-card {
        display: block;
        border-radius: 20px;
    }

    .blog-card img {
        height: auto;
        aspect-ratio: 1.12;
    }

    .blog-card-copy h3 {
        font-size: 22px;
    }

    .service-copy-panel {
        padding: 28px 20px;
    }

    .service-copy-panel h2 {
        font-size: 36px;
    }

    .service-copy-panel > p:not(.service-eyebrow) {
        margin-top: 18px;
        font-size: 13px;
    }

    .service-actions {
        flex-wrap: wrap;
        margin-top: 22px;
    }

    .service-proof {
        margin-top: 30px;
    }

    .service-quote {
        bottom: 14px;
        left: 14px;
        width: calc(100% - 28px);
        padding: 14px 16px;
        border-radius: 18px;
    }

    .service-image-orientation,
    .service-image-mixanografiko,
    .service-image-time {
        background-size: cover, auto, min(92%, 390px), cover;
    }

    .service-image-mixanografiko {
        background-position: center, center 22%, center;
    }

    .service-slots {
        right: 14px;
        top: 14px;
        padding: 12px 16px;
    }

    .footer-shell {
        width: calc(100% - (var(--shell-pad) * 2));
        height: var(--footer-reveal-height);
        margin: 0;
        padding: 0;
    }

    .footer-card {
        height: 100%;
        min-height: 0;
        align-content: center;
        gap: clamp(14px, 2.4svh, 22px);
        padding: clamp(24px, 5svh, 34px) 22px clamp(22px, 4svh, 30px);
        border-radius: 24px;
    }

    .footer-logo {
        margin-bottom: 14px;
    }

    .footer-logo img {
        width: 104px;
        height: auto;
    }

    .footer-brand h2 {
        font-size: clamp(31px, 9vw, 38px);
        line-height: 0.96;
    }

    .footer-brand p {
        margin-top: 13px;
        font-size: 13px;
        line-height: 1.38;
    }

    .footer-socials {
        margin-top: 14px;
        gap: 7px;
    }

    .footer-socials a {
        width: 32px;
        height: 32px;
    }

    .newsletter-field {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
        border-radius: 0;
    }

    .newsletter-field input {
        min-height: 42px;
    }

    .newsletter-field button {
        min-height: 42px;
    }

    .footer-contact {
        gap: 4px;
        font-size: 13px;
    }

    .social-links {
        left: 24px;
        bottom: 34px;
    }

    .scroll-indicator {
        right: 24px;
        bottom: 28px;
    }

    .menu-panel {
        inset: 10px;
        width: auto;
        padding: 22px;
        border-radius: 22px;
    }

    .hero-menu,
    .menu-scrim {
        inset: 8px;
        border-radius: 24px;
    }

    .menu-pills {
        margin-top: 34px;
    }

    .menu-brand {
        margin-top: 34px;
    }

    .menu-brand h2 {
        font-size: 25px;
    }

    .menu-links {
        margin-top: 26px;
    }

    .menu-links a {
        min-height: 36px;
        font-size: 14px;
    }

    .service-hero-card {
        min-height: calc(100svh - 16px);
        padding: 0;
    }

    .service-hero-card .logo-text,
    .service-hero-card .search-button {
        display: none;
    }

    .service-hero-content {
        grid-template-rows: minmax(350px, 50%) minmax(0, 1fr);
    }

    .service-hero-copy {
        padding: 82px 20px 0;
    }

    .service-hero-mark {
        width: 34px;
        height: 34px;
        margin-bottom: 18px;
    }

    .service-hero-copy h1 {
        max-width: 320px;
        font-size: clamp(32px, 8.9vw, 35px);
        line-height: 1;
    }

    .service-hero-copy p {
        max-width: 320px;
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.42;
    }

    .service-hero-cta,
    .service-hero-cta:hover {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
    }

    .service-hero-cta {
        min-height: 52px;
        margin-top: 22px;
        padding: 14px 21px;
        font-size: 12px;
    }

    .service-hero-cta:hover {
        transform: translateY(-2px);
    }

    .service-hero-card-stack {
        left: 50%;
        bottom: -16px;
        width: 760px;
        max-width: none;
        height: min(370px, 43vh);
    }

    .service-photo-card {
        border-width: 4px;
        border-radius: 22px;
    }

    .card-study {
        left: 0;
        width: 34%;
        height: 82%;
    }

    .card-counseling {
        left: 25%;
        width: 35%;
        height: 80%;
    }

    .card-plan {
        left: 54%;
        width: 32%;
        height: 78%;
    }

    .card-future {
        right: 0;
        width: 34%;
        height: 84%;
    }

    .service-floating-pill {
        min-height: 42px;
        padding: 10px 16px;
        gap: 8px;
        font-size: 15px;
    }

    .service-floating-pill b {
        font-size: 22px;
    }

    .service-floating-pill em {
        width: 9px;
        height: 9px;
    }

    .pill-before {
        left: 25%;
        bottom: 17%;
    }

    .pill-after {
        right: 25%;
        bottom: 20%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
    }

    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .service-photo-card {
        opacity: 1 !important;
        transform: var(--card-transform) !important;
        animation: none !important;
    }
}

@media (max-width: 1100px) {
    .future-nav {
        grid-template-columns: auto auto;
    }

    .future-nav-links {
        display: none;
    }

    .search-button {
        display: none;
    }

    .site-search {
        display: none;
    }
}

@media (max-width: 980px) {
    .hero-card {
        display: block;
        padding: 0;
        min-height: calc(100svh - 16px);
    }

    .future-nav {
        top: 27px;
        left: clamp(28px, 7vw, 58px);
        right: clamp(28px, 7vw, 58px);
    }

    .future-hero-content {
        padding: 104px 32px 156px;
    }

    .future-slider {
        inset: 104px 32px 156px;
    }

    .future-preview {
        width: clamp(142px, 21vw, 220px);
        border-width: 7px;
        border-radius: 22px;
        opacity: 0.64;
    }

    .future-preview-left {
        left: clamp(10px, 3vw, 32px);
    }

    .future-preview-right {
        right: clamp(10px, 3vw, 32px);
    }

    .future-kicker {
        top: 118px;
        font-size: 11px;
    }

    .future-title {
        font-size: clamp(82px, 15vw, 120px);
    }

    .future-media {
        width: min(72vw, 560px);
        max-height: 58vh;
    }

    .future-cta {
        bottom: 118px;
    }

    .future-info {
        width: min(720px, calc(100% - 76px));
        bottom: 34px;
        gap: 22px;
    }

    .hero-arrow-left {
        left: 28px;
    }

    .hero-arrow-right {
        right: 28px;
    }
}

@media (max-width: 620px) {
    .future-nav {
        top: 22px;
        left: 22px;
        right: 18px;
    }

    .future-logo {
        width: auto;
        height: clamp(30px, 7vw, 38px);
    }

    .future-logo .logo-image {
        width: auto;
        height: 100%;
    }

    .service-hero-card .future-logo,
    .book-now-page .future-logo,
    .blog-archive-page .future-logo {
        width: auto;
        height: clamp(30px, 7vw, 38px);
    }

    .service-hero-card .future-logo .logo-image,
    .book-now-page .future-logo .logo-image,
    .blog-archive-page .future-logo .logo-image {
        width: auto;
        height: 100%;
    }

    .logo-text {
        display: none;
    }

    .future-hero-content {
        padding: 86px 18px 182px;
    }

    .future-slider {
        inset: 86px 18px 182px;
    }

    .future-preview {
        left: 50%;
        right: auto;
        width: min(72vw, 390px);
        border-width: 7px;
        border-radius: 24px;
        opacity: 0.56;
        filter: saturate(0.92) blur(0.6px);
    }

    .future-preview-left {
        top: 50%;
        transform: translate(-50%, -83%) scale(0.82) rotate(-2deg);
    }

    .future-preview-right {
        top: 50%;
        transform: translate(-50%, -17%) scale(0.82) rotate(2deg);
    }

    .hero-card[data-preview-direction="forward"]
        .future-preview-left.is-swapping {
        transform: translate(-50%, -91%) scale(0.78) rotate(-3deg);
    }

    .hero-card[data-preview-direction="forward"]
        .future-preview-right.is-swapping {
        transform: translate(-50%, -9%) scale(0.78) rotate(3deg);
    }

    .hero-card[data-preview-direction="backward"]
        .future-preview-left.is-swapping {
        transform: translate(-50%, -75%) scale(0.82) rotate(-1deg);
    }

    .hero-card[data-preview-direction="backward"]
        .future-preview-right.is-swapping {
        transform: translate(-50%, -25%) scale(0.82) rotate(1deg);
    }

    .future-kicker {
        top: 88px;
        width: min(100%, 300px);
        white-space: normal;
        line-height: 1.35;
    }

    .future-title {
        font-size: clamp(56px, 18vw, 86px);
        letter-spacing: 0.05em;
    }

    .future-media {
        width: 85vw;
        max-height: 51vh;
    }

    .future-slide-badge {
        gap: 8px;
        min-height: 42px;
        bottom: 14px;
        padding: 12px 18px;
        font-size: 12px;
        letter-spacing: 0.03em;
    }

    .future-slider::after {
        top: 60%;
        width: 70vw;
    }

    .future-cta {
        bottom: clamp(195px, 19svh, 238px);
        min-height: 58px;
        padding: 17px 34px;
        font-size: 13px;
    }

    .hero-arrow {
        display: none;
    }

    .future-info {
        width: calc(100% - 36px);
        bottom: 24px;
        height: auto;
        min-height: 76px;
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .future-info::-webkit-scrollbar {
        display: none;
    }

    .future-info article {
        position: relative;
        inset: auto;
        flex: 0 0 min(260px, 78vw);
        min-width: min(260px, 78vw);
        padding-right: 14px;
        opacity: 1;
        transform: none;
        scroll-snap-align: start;
    }

    .future-info article.is-active {
        opacity: 1;
        transform: none;
    }

    .future-info p {
        font-size: 11px;
    }
}

@media (max-width: 1180px) {
    .book-hero-card {
        padding-top: clamp(122px, 14vw, 158px);
    }

    .book-hero-card::before {
        inset: clamp(112px, 13vw, 148px) 2% 2%;
    }

    .book-stage {
        grid-template-columns: 1fr;
        min-height: auto;
        align-items: start;
    }

    .book-stage-copy,
    .calendly-panel,
    .book-contact-panel {
        grid-column: 1;
        grid-row: auto;
    }

    .book-stage-copy,
    .calendly-panel {
        max-width: 840px;
    }

    .calendly-panel {
        min-height: auto;
    }

    .book-contact-panel {
        min-height: auto;
    }

    .book-balance-art {
        left: auto;
        right: 4%;
        top: 18%;
        width: min(330px, 42vw);
        opacity: 0.74;
    }
}

@media (max-width: 760px) {
    .book-now-page,
    .book-now-page main,
    .book-now-page .hero-shell,
    .book-now-page .hero-card {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .book-hero-card {
        min-height: auto;
        padding: 92px 10px 24px;
        border-radius: 24px;
    }

    .book-now-page .nav-book {
        display: none;
    }

    .book-hero-card::before {
        inset: 76px 10px 10px;
        border-radius: 24px;
    }

    .book-stage {
        width: calc(100vw - 52px);
        max-width: calc(100vw - 52px);
        justify-self: start;
        gap: 18px;
        padding: 18px 8px;
    }

    .book-stage-copy {
        padding: 24px 6px 0;
        width: calc(100vw - 76px);
        max-width: calc(100vw - 76px);
    }

    .book-stage-copy p {
        font-size: clamp(44px, 14vw, 68px);
        line-height: 0.92;
    }

    .book-stage-copy h1 {
        font-size: clamp(20px, 6vw, 30px);
    }

    .book-stage-copy > span {
        font-size: 14px;
    }

    .book-balance-art {
        top: 178px;
        right: -22%;
        width: 260px;
        height: 420px;
        opacity: 0.34;
    }

    .calendly-panel {
        width: calc(100vw - 76px);
        max-width: calc(100vw - 76px);
        margin-left: 0;
        margin-top: 0;
        padding: 12px;
        border-radius: 22px;
        overflow: hidden;
    }

    .booking-steps {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .booking-steps span {
        min-height: 34px;
    }

    .service-chip-list {
        gap: 8px;
    }

    .service-chip-list span {
        min-height: 34px;
        padding: 8px 14px;
        font-size: 12px;
        overflow-wrap: anywhere;
    }

    .booking-preview {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .time-slot-card {
        display: none;
    }

    .calendar-grid {
        gap: 8px;
    }

    .time-slot-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .calendly-placeholder {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 16px;
    }

    .book-contact-panel {
        width: calc(100vw - 76px);
        max-width: calc(100vw - 76px);
        min-height: auto;
        padding: 20px 16px;
        border-radius: 24px;
    }

    .book-contact-icon {
        width: 48px;
        height: 48px;
    }

    .book-contact-art {
        top: 22px;
        right: 18px;
        width: 68px;
        opacity: 0.88;
    }

    .book-contact-panel > p {
        width: calc(100% - 118px);
        margin-top: 30px;
        padding-bottom: 16px;
        font-size: clamp(30px, 9vw, 42px);
    }

    .book-contact-panel h2 {
        max-width: 100%;
        font-size: 18px;
    }

    .book-contact-note {
        font-size: 13px;
    }

    .book-contact-list {
        margin-top: 26px;
    }

    .book-contact-list a {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 13px;
        min-height: 62px;
        font-size: 14px;
    }

    .book-contact-list span {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

.blog-archive-root {
    background: #333;
}

.blog-archive-page {
    --archive-beige: #dedbd1;
    --archive-shell: #f9f9f7;
    --archive-paper: #efeee8;
    --archive-lime: #c7ff26;
    --archive-ink: #111111;
    color: var(--archive-ink);
    background: #333;
}

.blog-archive-page main {
    background: #333;
}

.archive-stage {
    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(247, 231, 151, 0.08),
            transparent 36%
        ),
        #333;
    overflow-x: clip;
}

.archive-shell {
    position: relative;
    top: auto;
    z-index: 1;
    width: min(100%, 1800px);
    height: auto;
    min-height: calc(100svh - 16px);
    margin: 0 auto;
    padding: clamp(116px, 9vw, 148px) clamp(24px, 4.8vw, 72px)
        clamp(36px, 4.8vw, 72px);
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--archive-shell);
    box-shadow: var(--shadow);
    isolation: isolate;
}

.archive-shell::before {
    content: none;
}

.archive-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
    padding-top: clamp(38px, 5vw, 68px);
}

.archive-intro-copy p {
    margin: 0 0 22px;
    color: #aaa9a2;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.archive-intro-copy h1 {
    max-width: 780px;
    margin: 0;
    color: var(--archive-ink);
    font-size: clamp(42px, 6vw, 66px);
    line-height: 0.98;
    letter-spacing: 0;
}

.archive-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.archive-arrow {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--archive-ink);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.archive-arrow:hover {
    transform: translateY(-2px);
}

.archive-arrow:active {
    transform: translateY(0) scale(0.96);
}

.archive-arrow:disabled {
    opacity: 0.28;
    cursor: default;
    transform: none;
}

.archive-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: clamp(26px, 3vw, 38px);
}

.archive-filters button {
    min-height: 36px;
    border: 0;
    border-radius: 999px;
    padding: 9px 15px;
    background: #f1f1ef;
    color: rgba(17, 17, 17, 0.68);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition:
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.archive-filters button:hover {
    transform: translateY(-1px);
    color: var(--archive-ink);
}

.archive-filters button.is-active {
    background: var(--archive-ink);
    color: #fff;
}

.archive-carousel-region {
    margin-top: clamp(28px, 4vw, 48px);
}

.archive-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, minmax(0, auto));
    grid-auto-columns: clamp(310px, 24vw, 380px);
    gap: clamp(24px, 2.4vw, 34px);
    align-items: start;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-padding-left: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 max(0px, calc((100vw - 1800px) / 2)) 18px 0;
    outline: 0;
}

.archive-carousel::-webkit-scrollbar {
    display: none;
}

.archive-post-card {
    width: 100%;
    height: clamp(520px, 36vw, 588px);
    min-height: clamp(520px, 36vw, 588px);
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 28px;
    background: var(--archive-paper);
    color: var(--archive-ink);
    transition:
        transform 250ms ease,
        box-shadow 250ms ease;
}

.archive-post-card.is-featured {
    background: var(--archive-lime);
}

.archive-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 46px rgba(74, 68, 54, 0.14);
}

.archive-post-card a {
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-rows: 30px 118px auto;
    align-content: stretch;
    position: relative;
    padding: 24px;
}

@media (min-width: 1280px) {
    .archive-post-card a {
        grid-template-rows: 30px 108px auto;
    }
}

.archive-post-meta {
    min-height: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
    padding-right: 0;
}

.archive-post-meta span,
.archive-post-date {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--archive-ink);
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.archive-post-meta span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.archive-post-meta span:first-child {
    justify-self: start;
}

.archive-post-meta span:nth-child(2) {
    justify-self: end;
}

.archive-post-date {
    position: static;
    justify-self: end;
    border: 1px solid rgba(17, 17, 17, 0.1);
    background: rgba(255, 255, 255, 0.34);
}

.archive-post-card h2 {
    display: -webkit-box;
    margin: 20px 0 0;
    overflow: hidden;
    color: var(--archive-ink);
    font-size: clamp(21px, 1.45vw, 24px);
    line-height: 1.06;
    letter-spacing: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.archive-post-card p {
    display: none;
}

.archive-post-card.is-featured p {
    color: rgba(17, 17, 17, 0.7);
}

.archive-post-image {
    position: relative;
    aspect-ratio: 1 / 1;
    width: calc(100% + 48px);
    min-height: 0;
    align-self: end;
    margin: 0 -24px -24px;
    overflow: hidden;
    border-radius: 24px 24px 28px 28px;
    background: rgba(255, 255, 255, 0.38);
}

.archive-post-image img {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: cover;
    transition: transform 250ms ease;
}

.archive-post-card:hover .archive-post-image img {
    transform: scale(1.03);
}

.archive-read-more {
    position: absolute;
    right: 22px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 9px 8px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.22);
}

.archive-read-more b {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--archive-ink);
    font-size: 18px;
    line-height: 1;
    transition: transform 180ms ease;
}

.archive-post-card:hover .archive-read-more b {
    transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
    .archive-carousel {
        scroll-behavior: auto;
    }

    .archive-arrow,
    .archive-filters button,
    .archive-post-card,
    .archive-post-image img,
    .archive-read-more b {
        transition: none;
    }
}

@media (max-width: 980px) {
    .archive-intro {
        grid-template-columns: 1fr;
        align-items: start;
        padding-top: 42px;
    }

    .archive-controls {
        margin-bottom: 0;
    }
}

@media (max-width: 760px) {
    .archive-stage {
        padding-top: 12px;
    }

    .archive-shell {
        width: min(100%, calc(100vw - 16px));
        padding: 18px 18px 24px;
        overflow-x: hidden;
        border-radius: 22px;
    }

    .archive-intro {
        gap: 18px;
        padding-top: 92px;
    }

    .archive-intro-copy p {
        margin-bottom: 14px;
    }

    .archive-intro-copy h1 {
        max-width: 92%;
        font-size: clamp(31px, 8.7vw, 38px);
        line-height: 1;
    }

    .archive-filters {
        flex-wrap: nowrap;
        margin-inline: -18px;
        padding: 0 18px 4px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scroll-padding-inline: 18px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .archive-filters::-webkit-scrollbar {
        display: none;
    }

    .archive-filters button {
        flex: 0 0 auto;
        white-space: nowrap;
        scroll-snap-align: start;
    }

    .archive-carousel {
        grid-auto-columns: min(84vw, 340px);
        gap: 18px;
        margin-inline: -18px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .archive-post-card {
        height: clamp(470px, 138vw, 512px);
        min-height: clamp(470px, 138vw, 512px);
    }

    .archive-post-card a {
        height: 100%;
        min-height: 0;
        grid-template-rows: 30px 106px auto;
        padding: 20px;
    }

    .archive-post-card h2 {
        font-size: clamp(21px, 6.2vw, 25px);
    }

    .archive-post-image {
        width: calc(100% + 40px);
        margin: 0 -20px -20px;
    }
}

.blog-post-page {
    --post-cream: #fbfbf8;
    --post-soft: #f2f2ec;
    --post-sage: #dfe8cf;
    --post-green: #46692e;
    --post-ink: #242426;
    --post-muted: rgba(36, 36, 38, 0.62);
}

.post-stage {
    background:
        radial-gradient(
            circle at 18% 8%,
            rgba(124, 205, 200, 0.1),
            transparent 26%
        ),
        radial-gradient(
            circle at 84% 22%,
            rgba(247, 231, 151, 0.12),
            transparent 28%
        ),
        #333;
}

.post-shell {
    min-height: auto;
    padding: clamp(122px, 10vw, 164px) clamp(22px, 5vw, 86px)
        clamp(46px, 6vw, 86px);
    background:
        radial-gradient(
            circle at 78% 14%,
            rgba(223, 232, 207, 0.52),
            transparent 18%
        ),
        linear-gradient(180deg, #fff 0%, var(--post-cream) 42%, #f7f8f2 100%);
}

.post-article {
    width: min(100%, 1320px);
    margin: 0 auto;
    color: var(--post-ink);
}

.post-header {
    max-width: 980px;
}

.post-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.post-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    min-height: 40px;
    padding: 11px 19px;
    border: 1px solid rgba(70, 105, 46, 0.13);
    border-radius: 999px;
    background: rgba(223, 232, 207, 0.72);
    color: var(--post-green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.post-category-pill::before {
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%23000' viewBox='0 0 256 256'%3E%3Cpath d='M223.45,40.07a8,8,0,0,0-7.52-7.52C139.8,26.78,84.18,48.73,52.74,96.56a87.09,87.09,0,0,0-14.17,39.9L18.34,156.69a8,8,0,0,0,11.32,11.31l19.65-19.65,58.34,58.34L88,226.34a8,8,0,0,0,11.31,11.32l20.23-20.23a87.09,87.09,0,0,0,39.9-14.17C207.27,171.82,229.22,116.2,223.45,40.07ZM150.61,190a71.08,71.08,0,0,1-28.21,11.88L61.13,140.6A71.08,71.08,0,0,1,73,112.39c26.7-40.62,73-62.29,134.69-63.99C206,110,184,163.3,150.61,190Z'/%3E%3C/svg%3E")
        center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%23000' viewBox='0 0 256 256'%3E%3Cpath d='M223.45,40.07a8,8,0,0,0-7.52-7.52C139.8,26.78,84.18,48.73,52.74,96.56a87.09,87.09,0,0,0-14.17,39.9L18.34,156.69a8,8,0,0,0,11.32,11.31l19.65-19.65,58.34,58.34L88,226.34a8,8,0,0,0,11.31,11.32l20.23-20.23a87.09,87.09,0,0,0,39.9-14.17C207.27,171.82,229.22,116.2,223.45,40.07ZM150.61,190a71.08,71.08,0,0,1-28.21,11.88L61.13,140.6A71.08,71.08,0,0,1,73,112.39c26.7-40.62,73-62.29,134.69-63.99C206,110,184,163.3,150.61,190Z'/%3E%3C/svg%3E")
        center / contain no-repeat;
}

.post-header h1 {
    max-width: 1120px;
    margin: clamp(24px, 3vw, 36px) 0 0;
    color: var(--post-ink);
    font-size: clamp(44px, 5vw, 74px);
    line-height: 1;
    letter-spacing: 0;
    text-wrap: balance;
}

.post-dek {
    max-width: 820px;
    margin: clamp(20px, 2.4vw, 28px) 0 0;
    color: var(--post-muted);
    font-size: clamp(16px, 1.24vw, 20px);
    line-height: 1.7;
    font-weight: 700;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 34px;
    margin: clamp(26px, 3vw, 38px) 0 0;
    padding: 0;
    color: rgba(70, 105, 46, 0.88);
}

.post-meta div {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.post-meta div::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    background: currentColor;
}

.post-meta div:first-child::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%23000' viewBox='0 0 256 256'%3E%3Cpath d='M208,32H184V24a8,8,0,0,0-16,0v8H88V24a8,8,0,0,0-16,0v8H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM72,48v8a8,8,0,0,0,16,0V48h80v8a8,8,0,0,0,16,0V48h24V80H48V48ZM208,208H48V96H208V208Z'/%3E%3C/svg%3E")
        center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%23000' viewBox='0 0 256 256'%3E%3Cpath d='M208,32H184V24a8,8,0,0,0-16,0v8H88V24a8,8,0,0,0-16,0v8H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM72,48v8a8,8,0,0,0,16,0V48h80v8a8,8,0,0,0,16,0V48h24V80H48V48ZM208,208H48V96H208V208Z'/%3E%3C/svg%3E")
        center / contain no-repeat;
}

.post-meta div:nth-child(2)::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%23000' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm64-88a8,8,0,0,1-8,8H128a8,8,0,0,1-8-8V72a8,8,0,0,1,16,0v48h48A8,8,0,0,1,192,128Z'/%3E%3C/svg%3E")
        center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='%23000' viewBox='0 0 256 256'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm64-88a8,8,0,0,1-8,8H128a8,8,0,0,1-8-8V72a8,8,0,0,1,16,0v48h48A8,8,0,0,1,192,128Z'/%3E%3C/svg%3E")
        center / contain no-repeat;
}

.post-meta dt {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.post-meta dd {
    margin: 0;
    color: rgba(36, 36, 38, 0.62);
    font-size: 13px;
    font-weight: 800;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: clamp(26px, 3vw, 34px);
}

.post-tags span {
    margin-right: 4px;
    color: rgba(36, 36, 38, 0.72);
    font-size: 12px;
    font-weight: 900;
}

.post-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 9px 15px;
    border: 1px solid rgba(70, 105, 46, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
    color: rgba(70, 105, 46, 0.9);
    font-size: 12px;
    font-weight: 800;
}

.post-tag-chip {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 34px;
    padding: 9px 15px;
    border: 1px solid rgba(70, 105, 46, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
    color: rgba(70, 105, 46, 0.9);
    font-size: 12px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.post-taxonomy-id {
    text-transform: none;
    letter-spacing: 0;
}

.post-hero-image {
    width: min(100%, 980px);
    margin: clamp(32px, 5vw, 58px) 0 0;
    overflow: hidden;
    border-radius: 20px;
    background: var(--post-soft);
    box-shadow:
        inset 0 0 0 1px rgba(36, 36, 38, 0.06),
        0 22px 48px rgba(74, 68, 54, 0.1);
}

.post-hero-image img {
    width: 100%;
    aspect-ratio: 1.86 / 1;
    display: block;
    object-fit: cover;
}

.wix-generated-post-page .post-hero-image {
    width: fit-content;
    max-width: min(100%, 980px);
}

.wix-generated-post-page .post-hero-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

.post-content {
    max-width: 880px;
    margin-top: clamp(34px, 4vw, 54px);
    color: rgba(36, 36, 38, 0.86);
}

.wix-generated-post-page .post-content,
.wix-generated-post-page .post-content *,
.wix-generated-post-page .wix-html-block,
.wix-generated-post-page .wix-html-block * {
    text-align: left !important;
}

.post-content p {
    margin: 0;
    font-size: clamp(16px, 1.08vw, 18px);
    line-height: 1.78;
    font-weight: 600;
}

.post-content p + p {
    margin-top: 24px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    margin: clamp(24px, 3vw, 36px) 0 12px;
    color: var(--post-ink);
    line-height: 1.12;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

.post-content h1 {
    font-size: clamp(31px, 3vw, 44px);
}

.post-content h2 {
    font-size: clamp(25px, 2.3vw, 34px);
}

.post-content h3 {
    font-size: clamp(22px, 1.9vw, 29px);
}

.post-content h4,
.post-content h5,
.post-content h6 {
    font-size: clamp(19px, 1.45vw, 23px);
}

.post-content a {
    color: #2c0db7;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.wix-underline {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.post-content ul,
.post-content ol {
    margin: 22px 0;
    padding-left: 1.4em;
    color: rgba(36, 36, 38, 0.86);
    font-size: clamp(16px, 1.08vw, 18px);
    line-height: 1.78;
    font-weight: 600;
}

.post-content ul,
.post-content ol,
.post-content li,
.post-content li p {
    text-align: left !important;
}

.post-content li + li {
    margin-top: 10px;
}

.post-content li > p {
    margin: 0;
}

.post-content blockquote {
    position: relative;
    margin: clamp(24px, 3vw, 36px) 0;
    padding: clamp(22px, 2.8vw, 32px) clamp(24px, 3.2vw, 44px)
        clamp(22px, 2.8vw, 32px) clamp(58px, 5vw, 76px);
    overflow: hidden;
    border-left: 3px solid var(--post-green);
    border-radius: 0 18px 18px 0;
    background:
        linear-gradient(
            90deg,
            rgba(223, 232, 207, 0.82),
            rgba(255, 255, 255, 0.46)
        ),
        rgba(255, 255, 255, 0.52);
    color: rgba(70, 105, 46, 0.9);
    font-size: clamp(17px, 1.2vw, 20px);
    font-weight: 800;
    font-style: italic;
    line-height: 1.62;
}

.post-content blockquote::before {
    content: "“";
    position: absolute;
    left: 28px;
    top: 18px;
    color: rgba(70, 105, 46, 0.74);
    font-family: Georgia, serif;
    font-size: 62px;
    line-height: 1;
}

.post-content blockquote p {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.wix-rich-image {
    max-width: 100%;
    margin: clamp(24px, 3vw, 38px) 0;
}

.wix-rich-image[data-align="center"] {
    text-align: center;
}

.wix-rich-image[data-align="right"] {
    text-align: right;
}

.wix-rich-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow:
        inset 0 0 0 1px rgba(36, 36, 38, 0.06),
        0 18px 38px rgba(74, 68, 54, 0.08);
}

.wix-table-wrap {
    max-width: 100%;
    margin: clamp(24px, 3vw, 38px) 0;
    overflow-x: auto;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(70, 105, 46, 0.14);
}

.post-content table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.78);
    color: rgba(36, 36, 38, 0.84);
    font-size: 15px;
    line-height: 1.55;
}

.post-content td,
.post-content th {
    padding: 13px 15px;
    border: 1px solid rgba(70, 105, 46, 0.14);
    vertical-align: top;
}

.post-content th {
    color: var(--post-ink);
    font-weight: 900;
}

.post-content td p,
.post-content th p {
    font-size: inherit;
    line-height: inherit;
}

.wix-html-block {
    max-width: 100%;
    margin: clamp(24px, 3vw, 38px) 0;
    overflow-x: auto;
}

.wix-button-row {
    margin: clamp(24px, 3vw, 38px) 0;
}

.wix-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-height: 46px;
    padding: 13px 20px;
    border-radius: 999px;
    background: var(--post-green);
    color: #fff !important;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    text-decoration: none !important;
    overflow-wrap: anywhere;
}

.wix-video {
    width: min(100%, 820px);
    margin: clamp(24px, 3vw, 38px) 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    background: #111;
}

.wix-video iframe,
.wix-video video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.wix-file {
    margin: clamp(20px, 2.5vw, 30px) 0;
    padding: 16px 18px;
    border: 1px solid rgba(70, 105, 46, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
}

.wix-file span {
    color: var(--post-muted);
    font-size: 12px;
}

.wix-divider {
    margin: clamp(26px, 3vw, 40px) 0;
    border: 0;
    border-top: 1px solid rgba(70, 105, 46, 0.18);
}

.post-services {
    max-width: 980px;
    margin-top: clamp(44px, 5vw, 70px);
}

.post-services-heading {
    display: grid;
    grid-template-columns: auto minmax(60px, 1fr);
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.post-services-heading::after {
    content: "";
    height: 1px;
    background: rgba(124, 205, 200, 0.42);
}

.post-services-heading h2 {
    margin: 0;
    color: var(--hero-teal);
    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1;
    letter-spacing: 0;
}

.post-services-list {
    display: grid;
    gap: 10px;
}

.post-service-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(12px, 1.6vw, 20px);
    min-height: 86px;
    padding: 12px 14px;
    border: 1px solid rgba(36, 36, 38, 0.08);
    border-radius: 12px;
    background:
        radial-gradient(circle at 12% 18%, rgba(124, 205, 200, 0.14), transparent 38%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(251, 251, 248, 0.84));
    box-shadow: 0 10px 24px rgba(74, 68, 54, 0.05);
    color: inherit;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.post-service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(36, 36, 38, 0.12);
    box-shadow: 0 14px 30px rgba(74, 68, 54, 0.09);
}

.post-service-card-guidance {
    background:
        radial-gradient(circle at 12% 18%, rgba(124, 205, 200, 0.16), transparent 38%),
        radial-gradient(circle at 92% 20%, rgba(247, 231, 151, 0.14), transparent 42%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 251, 250, 0.88) 100%);
}

.post-service-card-mixanografiko {
    background:
        radial-gradient(circle at 12% 18%, rgba(247, 231, 151, 0.18), transparent 38%),
        radial-gradient(circle at 92% 20%, rgba(217, 196, 248, 0.14), transparent 42%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(253, 250, 235, 0.88) 100%);
}

.post-service-card-time {
    background:
        radial-gradient(circle at 12% 18%, rgba(124, 205, 200, 0.16), transparent 38%),
        radial-gradient(circle at 92% 20%, rgba(184, 221, 122, 0.14), transparent 42%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 250, 246, 0.88) 100%);
}

.post-service-card-transfer {
    background:
        radial-gradient(circle at 12% 18%, rgba(134, 208, 223, 0.16), transparent 38%),
        radial-gradient(circle at 92% 20%, rgba(164, 200, 126, 0.13), transparent 42%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 249, 249, 0.88) 100%);
}

.post-service-card-postgrad {
    background:
        radial-gradient(circle at 12% 18%, rgba(217, 196, 248, 0.16), transparent 38%),
        radial-gradient(circle at 92% 20%, rgba(124, 205, 200, 0.13), transparent 42%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 246, 252, 0.88) 100%);
}

.post-service-mark {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
        inset 0 0 0 1px rgba(36, 36, 38, 0.08),
        0 10px 22px rgba(74, 68, 54, 0.08);
}

.post-service-mark::before,
.post-service-mark::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.72);
}

.post-service-mark::before {
    left: 13px;
    right: 13px;
    top: 21px;
    height: 2px;
}

.post-service-mark::after {
    width: 2px;
    top: 13px;
    bottom: 13px;
    left: 21px;
}

.post-service-card h3 {
    margin: 0;
    color: var(--post-ink);
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.12;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

.post-service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--hero-teal);
    color: #111;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.post-related {
    margin-top: clamp(52px, 7vw, 94px);
}

.post-related-heading {
    display: grid;
    grid-template-columns: auto minmax(60px, 1fr);
    align-items: center;
    gap: 24px;
    margin-bottom: clamp(22px, 3vw, 34px);
}

.post-related-heading::after {
    content: "";
    height: 1px;
    background: rgba(70, 105, 46, 0.2);
}

.post-related-heading h2 {
    margin: 0;
    color: var(--hero-teal);
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1;
    letter-spacing: 0;
}

.post-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 32px);
}

.related-post-card {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow:
        inset 0 0 0 1px rgba(70, 105, 46, 0.08),
        0 16px 34px rgba(74, 68, 54, 0.08);
}

.related-post-card a {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-post-card img {
    aspect-ratio: 1.92 / 1;
    border-radius: 14px 14px 0 0;
}

.related-post-card .blog-card-copy {
    padding: clamp(18px, 2vw, 24px);
}

.related-post-card .blog-card-copy span {
    margin-bottom: 12px;
    color: var(--post-green);
    font-size: 10px;
    letter-spacing: 0.08em;
}

.related-post-card .blog-card-copy h3 {
    font-size: clamp(18px, 1.58vw, 24px);
    line-height: 1.16;
}

.related-post-card .blog-card-copy p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: rgba(70, 105, 46, 0.72);
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 980px) {
    .post-header h1 {
        max-width: 780px;
    }

    .post-related-grid {
        grid-template-columns: 1fr;
    }

    .related-post-card {
        max-width: 520px;
    }
}

@media (max-width: 760px) {
    .blog-post-page,
    .blog-post-page main,
    .blog-post-page .post-stage,
    .blog-post-page .post-shell {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .post-stage {
        padding-top: 12px;
    }

    .post-shell {
        width: auto;
        padding: 94px 18px 30px;
        margin: 0;
        border-radius: 22px;
    }

    .blog-post-page .future-nav {
        left: 26px;
        right: 26px;
        width: auto;
    }

    .blog-post-page .nav-book {
        min-height: 38px;
        padding: 10px 13px;
        font-size: 9px;
        border-radius: 10px;
        white-space: nowrap;
    }

    .post-article,
    .post-header,
    .post-content,
    .post-hero-image,
    .post-related,
    .post-related-grid {
        width: calc(100vw - 52px);
        max-width: calc(100vw - 52px);
        min-width: 0;
    }

    .post-header h1 {
        font-size: clamp(34px, 10vw, 39px);
        text-wrap: normal;
        overflow-wrap: break-word;
    }

    .post-dek {
        font-size: 15px;
        line-height: 1.62;
        overflow-wrap: break-word;
    }

    .post-content p,
    .post-content h2,
    .post-content blockquote,
    .related-post-card .blog-card-copy h3 {
        overflow-wrap: break-word;
    }

    .post-meta {
        display: grid;
        gap: 12px;
    }

    .post-tags {
        align-items: flex-start;
    }

    .post-tags span {
        width: 100%;
    }

    .post-tags .post-tag-chip,
    .post-category-pill {
        width: auto;
        white-space: normal;
    }

    .post-hero-image {
        border-radius: 16px;
    }

    .post-hero-image img {
        aspect-ratio: 1.2 / 1;
    }

    .wix-generated-post-page .post-hero-image img {
        aspect-ratio: auto;
    }

    .post-content blockquote {
        padding: 58px 22px 22px;
        border-left-width: 0;
        border-top: 3px solid var(--post-green);
        border-radius: 0 0 16px 16px;
    }

    .post-content blockquote::before {
        left: 22px;
        top: 10px;
    }

    .post-content table {
        min-width: 520px;
    }

    .post-services {
        width: calc(100vw - 52px);
        max-width: calc(100vw - 52px);
    }

    .post-service-card {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 12px;
        min-height: 84px;
    }

    .post-service-mark {
        width: 38px;
        height: 38px;
    }

    .post-service-mark::before {
        left: 11px;
        right: 11px;
        top: 18px;
    }

    .post-service-mark::after {
        top: 11px;
        bottom: 11px;
        left: 18px;
    }

    .post-service-cta {
        grid-column: 2;
        justify-self: start;
        min-height: 32px;
        padding: 8px 11px;
        font-size: 11px;
    }

    .wix-rich-image img {
        border-radius: 13px;
    }

    .post-related-heading {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .post-related-heading::after {
        width: 100%;
    }

    .related-post-card {
        max-width: none;
    }
}
