/* ===== FONT ===== */
@font-face {
    font-family: 'Diatype';
    src: url('fonts/ABC Diatype/Diatype-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Diatype';
    src: url('fonts/ABC Diatype/Diatype-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Diatype';
    src: url('fonts/ABC Diatype/Diatype-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

/* ===== TOKENS ===== */
:root {
    --black: #1a1a1a;
    --grey: #8a8a8a;
    --grey-light: #e8e8e8;
    --white: #ffffff;
    --font: 'Diatype', sans-serif;
    --body: 16px;
    --label: 12px;
    --ease: 0.3s ease;
    --pad: 40px;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-weight: 400;
    font-size: var(--body);
    line-height: 1.5;
    color: var(--black);
    background: var(--white);
    max-width: 1360px;
    margin: 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--ease);
}

a:hover {
    color: var(--grey);
}

button {
    font-family: var(--font);
}

/* ===== UTILITIES ===== */
.label {
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 24px;
}

.divider {
    height: 1px;
    background: var(--grey-light);
    margin: 0 var(--pad);
}

.section-headline {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== REVEAL (scroll) ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--reveal-delay, 0) * 1s);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About image — slide from right */
.about-image.reveal {
    transform: translateX(30px) translateY(0);
}

.about-image.reveal.visible {
    transform: translateX(0) translateY(0);
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--pad);
    background: transparent;
    width: 100%;
    max-width: 1360px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.2s both;
}

.nav-logo {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* Center pill (closed) */
.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    border: none;
    border-radius: 100px;
    background: var(--grey-light);
    cursor: pointer;
    color: var(--black);
    transition: background var(--ease), color var(--ease);
}

.nav-pill:hover {
    background: #ddd;
}

.nav-pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Center menu (open) */
.nav-menu {
    display: none;
    align-items: center;
    gap: 8px;
}

.nav-menu.active {
    display: flex;
}

.nav-menu.active + .nav-pill,
.nav-center .nav-pill:first-child {
    display: flex;
}

.nav-center.open > .nav-pill:first-child {
    display: none;
}

.nav-center.open .nav-menu {
    display: flex;
}

.nav-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 20px;
    border-radius: 100px;
    background: var(--grey-light);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    transition: background var(--ease);
}

.nav-menu-item:hover {
    background: #ddd;
    color: var(--black);
}

.nav-pill-close {
    background: var(--black);
    color: var(--white);
}

.nav-pill-close:hover {
    background: #333;
}

/* Services dropdown */
.nav-services-wrap {
    position: relative;
}
.nav-services-toggle {
    cursor: pointer;
    border: none;
    gap: 6px;
}
.nav-services-chevron {
    display: inline-flex;
    align-items: center;
    transition: transform var(--ease);
}
.nav-services-wrap.open .nav-services-chevron {
    transform: rotate(180deg);
}
.nav-services-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #f2f2f2;
    border-radius: 12px;
    padding: 8px;
    flex-direction: column;
    z-index: 100;
}
.nav-services-dropdown.active {
    display: flex;
}
.nav-services-link {
    display: block;
    padding: 10px 14px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    border-radius: 8px;
    transition: background var(--ease);
}
.nav-services-link:hover {
    opacity: 0.5;
}
.nav-services-link[aria-current="page"] {
    color: var(--grey);
}

.nav-mobile-only {
    display: none;
}

/* Connect pill */
.nav-connect-wrap {
    position: relative;
}

.nav-connect {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 20px;
    border: none;
    border-radius: 100px;
    background: var(--grey-light);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    cursor: pointer;
    transition: background var(--ease);
}

.nav-connect:hover {
    background: #ddd;
}

.nav-connect-icon {
    font-size: 16px;
    font-weight: 300;
}

/* Connect dropdown */
.nav-connect-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    background: #f2f2f2;
    border-radius: 16px;
    padding: 24px;
}

.nav-connect-dropdown.active {
    display: block;
}

.nav-connect-wrap.open .nav-connect-icon {
    display: inline-flex;
    transform: none;
}

.nav-connect-icon {
    display: inline-flex;
    align-items: center;
    transition: transform var(--ease);
}

.nav-connect-wrap.open svg.door-closed {
    display: none;
}

.nav-connect-wrap.open svg.door-open {
    display: block !important;
}

.nav-connect-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-connect-location {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.nav-connect-city {
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 4px;
}

.nav-connect-time {
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    white-space: nowrap;
}

.nav-connect-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-connect-label {
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
}

.nav-connect-link {
    font-size: 14px;
    color: var(--grey);
    text-decoration: none;
}

.nav-connect-link:hover {
    color: var(--black);
}

.nav-connect-social {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.nav-connect-social-links {
    display: flex;
    gap: 16px;
}

.nav-connect-social-links a {
    font-size: 14px;
    color: var(--grey);
    text-decoration: none;
}

.nav-connect-social-links a:hover {
    color: var(--black);
}

/* ===== HERO ===== */
.hero {
    padding: 140px var(--pad) 80px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

.hero:not(:has(.hero-meta)) {
    min-height: auto;
    justify-content: flex-start;
    padding-bottom: 40px;
}

.hero-label {
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-headline {
    font-size: clamp(28px, 3.8vw, 48px);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -0.02em;
    max-width: 780px;
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-sub {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    color: var(--grey);
    margin-top: 20px;
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

.hero-meta {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 80px;
    font-size: var(--label);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--grey);
    opacity: 0;
    animation: fadeIn 1s ease 1.1s both;
}

/* ===== INTRO ===== */
.intro {
    padding: 80px var(--pad);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro .label {
    margin-bottom: 20px;
}

.intro-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--black);
    max-width: 580px;
}

/* ===== APPROACH ===== */
.approach {
    padding: 80px var(--pad) 100px;
}

.section-top {
    margin-bottom: 80px;
}

/* Approach images */
.approach-images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.approach-img-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}


.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.approach-num {
    display: block;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--grey);
    margin-bottom: 20px;
}

.approach-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.approach-img-mobile {
    display: none;
}

.approach-desc {
    font-size: var(--body);
    line-height: 1.6;
    color: var(--grey);
    margin-bottom: 16px;
}
.approach-link {
    font-size: var(--label);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--grey-light);
    padding-bottom: 2px;
    transition: border-color var(--ease);
}
.approach-link:hover { border-color: var(--black); }

.approach-tags {
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--grey);
}

.result-section {
    margin-top: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-section .label {
    margin-bottom: 20px;
}

.result-text {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    max-width: 580px;
}

/* ===== SCOPE ===== */
.scope {
    padding: 80px var(--pad) 100px;
}

.scope-header {
    margin-bottom: 60px;
}

.scope-timeline {
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--grey);
    vertical-align: middle;
}

.scope-lead {
    font-size: var(--body);
    line-height: 1.6;
    color: var(--grey);
    max-width: 480px;
    margin-top: 20px;
}

.scope-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1px;
    background: var(--grey-light);
}

.scope-card {
    background: var(--white);
    padding: 32px 28px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    cursor: pointer;
}

.scope-card-title::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--grey);
    border-bottom: 1.5px solid var(--grey);
    transform: rotate(45deg);
    margin-left: 8px;
    vertical-align: middle;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0.5;
}

.scope-card:hover .scope-card-title::after {
    transform: rotate(-135deg);
    opacity: 1;
}

.scope-card-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.scope-card-detail {
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.8;
    color: var(--grey);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease,
                margin-top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scope-card:hover .scope-card-detail {
    max-height: 120px;
    opacity: 1;
    margin-top: 12px;
}

.outcome {
    margin-top: 80px;
}

.outcome-text {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.4;
}

/* ===== CTA ===== */
.cta {
    padding: 100px var(--pad);
    background: #f2f2f2;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.cta-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-headline {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.cta-link {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 100px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: background var(--ease);
}

.cta-link:hover {
    background: #333;
    color: var(--white);
}

/* ===== WHY — ACCORDION ===== */
.why {
    padding: 80px var(--pad) 100px;
}

.why-layout {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 60px;
    align-items: start;
}

.why-left {
    position: sticky;
    top: 80px;
}

.why-layout > .accordion {
    padding-top: 36px;
}

.accordion-item {
    border-top: 1px solid var(--grey-light);
}

.accordion-item:last-child {
    border-bottom: 1px solid var(--grey-light);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.accordion-label {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--black);
    transition: color var(--ease);
}

.accordion-trigger:hover .accordion-label {
    color: var(--grey);
}

.accordion-toggle {
    font-size: 16px;
    font-weight: 300;
    color: var(--grey);
    width: 20px;
    text-align: center;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-body p {
    padding-bottom: 24px;
    font-size: var(--body);
    line-height: 1.6;
    color: var(--grey);
    max-width: 440px;
}

/* ===== ABOUT ===== */
.about {
    padding: 80px var(--pad) 100px;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 0.35fr;
    gap: 40px;
    align-items: start;
}

.about-image {
    margin-top: 52px;
    margin-left: -200px;
}

.about-left .section-headline {
    margin-bottom: 20px;
}

.about-left {
    max-width: 480px;
}

.about-lead {
    font-size: var(--body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--grey);
    max-width: 480px;
    margin-bottom: 12px;
}

.about-body {
    font-size: var(--body);
    line-height: 1.6;
    color: var(--grey);
    margin-bottom: 12px;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--grey-light);
}

/* ===== CONTACT ===== */
.contact {
    padding: 0;
    background: #f2f2f2;
    display: flex;
    justify-content: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.contact-card {
    padding: 80px 40px 120px;
    width: 100%;
    max-width: 560px;
}

.contact-card-header {
    margin-bottom: 32px;
    text-align: center;
}

.contact-card-header .label {
    margin-bottom: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    background: var(--white);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    outline: none;
    transition: background var(--ease);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--grey);
}

.contact-form select {
    color: var(--grey);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a8a8a' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 36px;
    cursor: pointer;
}

.contact-form select:valid {
    color: var(--black);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit {
    align-self: center;
    margin-top: 8px;
    padding: 12px 32px;
    border: none;
    border-radius: 100px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: background var(--ease);
}

.contact-submit:hover {
    background: #333;
}

.contact-success {
    display: none;
    text-align: center;
    padding: 60px 0;
}

.contact-success.visible {
    display: block;
}

.contact-success-text {
    font-size: var(--body);
    line-height: 1.6;
    color: var(--grey);
    margin-top: 16px;
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.booking-modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    height: 80vh;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
}

.booking-modal-content iframe {
    width: 100%;
    height: 100%;
}

.booking-modal-x {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 10;
    background: var(--white);
    border: none;
    font-size: 24px;
    color: var(--grey);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--ease);
}

.booking-modal-x:hover {
    color: var(--black);
}

/* ===== MEADOW FOOTER ===== */

.meadow {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    cursor: default;
}

.meadow-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.sheep {
    position: absolute;
    display: block;
    cursor: grab;
    text-decoration: none;
    z-index: 2;
    transition: filter 0.2s ease;
}

.sheep:active {
    cursor: grabbing;
}

.sheep.dragging {
    z-index: 10;
}

.sheep img {
    width: 100px;
    height: auto;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.sheep--house img {
    width: 140px;
}

.sheep--muted {
    opacity: 0.45;
    cursor: default;
}

.sheep-tooltip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    font-family: var(--font);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.sheep:hover .sheep-tooltip {
    opacity: 1;
}

.sheep.dragging .sheep-tooltip {
    opacity: 1;
}

.meadow-bottom {
    position: absolute;
    bottom: 12px;
    right: 20px;
    font-size: var(--label);
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.5);
    z-index: 3;
}

.meadow-footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #f2f2f2;
}

/* ===== QUIZ ===== */
.quiz {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px var(--pad) 80px;
}

.quiz-inner {
    width: 100%;
    max-width: 640px;
}

.quiz-screen {
    display: none;
}

.quiz-screen--active {
    display: block;
    animation: quizFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes quizFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-start {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 16px 40px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: opacity var(--ease);
}

.quiz-start:hover {
    opacity: 0.7;
}

.quiz-progress {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.quiz-progress-bar {
    flex: 1;
    height: 2px;
    background: var(--grey-light);
    border-radius: 2px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--black);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 0%;
}

.quiz-progress-label {
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--grey);
    white-space: nowrap;
}

.quiz-question {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 40px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--grey-light);
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    text-align: left;
    width: 100%;
}

.quiz-option:hover {
    border-color: var(--black);
}

.quiz-option-letter {
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--grey);
    flex-shrink: 0;
}

.quiz-option--selected {
    border-color: var(--black);
    background: var(--white);
}

.quiz-result-score {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.quiz-result-number {
    font-size: clamp(64px, 10vw, 96px);
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 1;
}

.quiz-result-total {
    font-size: 24px;
    font-weight: 300;
    color: var(--grey);
}

.quiz-result-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 16px;
}

.quiz-result-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey);
    margin-bottom: 32px;
    max-width: 520px;
}

.quiz-result-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--grey-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
}

.quiz-result-item {
    background: var(--white);
    padding: 20px;
}

.quiz-result-item-label {
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 8px;
}

.quiz-result-item-bar {
    height: 4px;
    background: var(--grey-light);
    border-radius: 4px;
    overflow: hidden;
}

.quiz-result-item-fill {
    height: 100%;
    background: var(--black);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-restart {
    display: inline-block;
    margin-top: 0;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    color: var(--grey);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.quiz-restart:hover {
    color: var(--black);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 900px) {
    :root {
        --pad: 24px;
    }

    /* Nav: pill stays visible, turns black, icon rotates */
    .nav-center.open > .nav-pill:first-child {
        display: flex;
        background: var(--black);
        color: var(--white);
    }

    .nav-center.open > .nav-pill:first-child .nav-pill-icon {
        transform: rotate(90deg);
    }

    /* Nav: dropdown panel instead of inline menu */
    .nav-center .nav-menu {
        display: none;
    }

    .nav-center.open .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 8px);
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        background: #f2f2f2;
        border-radius: 16px;
        padding: 8px;
        gap: 2px;
        z-index: 100;
    }

    .nav-center.open .nav-menu-item {
        height: 40px;
        padding: 0 16px;
        font-size: 14px;
        border-radius: 8px;
        background: transparent;
        justify-content: flex-start;
        width: 100%;
    }

    .nav-center.open .nav-menu-item:hover {
        background: #e4e4e4;
    }

    .nav-center.open .nav-services-wrap {
        width: 100%;
    }

    .nav-center.open .nav-services-toggle {
        height: 40px;
        padding: 0 16px;
        font-size: 14px;
        border-radius: 8px;
        background: transparent;
        justify-content: flex-start;
        width: 100%;
    }

    .nav-center.open .nav-services-toggle:hover {
        background: #e4e4e4;
    }

    .nav-center.open .nav-services-dropdown {
        position: static;
        transform: none;
        width: 100%;
        min-width: 0;
        background: transparent;
        padding: 0 0 0 12px;
        border-radius: 0;
    }

    .nav-center.open .nav-services-link {
        font-size: 13px;
        color: #8a8a8a;
        padding: 8px 16px;
    }

    .nav-center.open .nav-pill-close {
        display: none;
    }

    .nav-mobile-only {
        display: flex;
    }

    .nav {
        padding: 16px 24px;
    }

    .nav-connect {
        height: 40px;
        padding: 0 16px;
        font-size: 13px;
    }

    .nav-connect-dropdown {
        width: 260px;
        right: 0;
        padding: 16px;
    }

    .hero {
        padding: 120px var(--pad) 60px;
    }

    .hero-headline {
        font-size: clamp(24px, 5vw, 36px);
        br { display: none; }
    }

    .intro-text {
        font-size: 16px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image {
        margin-top: 0 !important;
        margin-left: 0 !important;
    }

    .approach-images {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .approach-item {
        margin-top: 0 !important;
    }

    .scope-cards {
        grid-template-columns: 1fr 1fr;
    }

    .why-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-left {
        position: static;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .section-headline {
        font-size: 20px;
    }

    .cta-headline {
        font-size: 24px;
    }

    .meadow {
        height: 300px;
    }

    .sheep img {
        width: 70px;
    }

    .sheep--house img {
        width: 100px;
    }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 560px) {
    :root {
        --pad: 16px;
    }

    .nav {
        padding: 16px var(--pad);
    }

    .nav-logo {
        font-size: 16px;
    }

    .nav-connect-city {
        font-size: 13px;
    }

    .nav-connect-time {
        font-size: 13px;
    }

    .nav-connect-label {
        font-size: 13px;
    }

    .nav-connect-link {
        font-size: 12px;
    }

    .nav-connect-body {
        gap: 14px;
    }

    .hero {
        padding: 100px var(--pad) 40px;
    }

    .hero-headline {
        font-size: 22px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 4px;
        padding-top: 40px;
    }

    .intro {
        padding: 60px var(--pad);
        text-align: left;
        align-items: flex-start;
    }

    .approach {
        padding: 60px var(--pad) 80px;
    }

    .approach-images {
        display: none;
    }

    .approach-img-mobile {
        display: block;
        margin-bottom: 20px;
    }

    .approach-img-mobile img {
        width: 50%;
        height: auto;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-top {
        margin-bottom: 48px;
    }

    .scope {
        padding: 60px var(--pad) 80px;
    }

    .scope-cards {
        grid-template-columns: 1fr;
    }

    .scope-card {
        min-height: auto;
        padding: 24px 20px;
    }

    .scope-card-detail {
        max-height: none;
        opacity: 1;
        margin-top: 12px;
    }

    .scope-card-title::after {
        display: none;
    }

    .cta {
        padding: 60px var(--pad);
    }

    .cta-headline {
        font-size: 22px;
    }

    .why {
        padding: 60px var(--pad) 80px;
    }

    .about {
        padding: 60px var(--pad) 80px;
    }

    .about-left {
        max-width: 100%;
    }

    .contact-card {
        padding: 60px 20px 80px;
    }

    .meadow {
        height: 250px;
    }

    .sheep img {
        width: 55px;
    }

    .sheep--house img {
        width: 80px;
    }

    .sheep-tooltip {
        opacity: 1;
        top: calc(100% - 6px);
        bottom: auto;
        background: transparent;
        color: var(--white);
        font-size: 10px;
        padding: 0;
    }

    .meadow-bottom {
        font-size: 10px;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0.01ms !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
