/*
Theme Name: Zweitblick GSAP
Theme URI: https://example.com/
Author: Zweitblick
Author URI: https://example.com/
Description: Lightweight Gutenberg theme for Zweitblick.
Version: 1.0.0
Text Domain: zweitblick
*/

:root {
    --primary: #2b1a3b;
    --secondary: #ff4d7c;
    --teal: #1db6a1;
    --gold: #f1b64b;
    --cream: #f7f3ef;
    --ink: #140b1f;
    --glass: rgba(255, 255, 255, 0.08);
    --stroke: rgba(255, 255, 255, 0.2);
    --section-pad-x: 4rem;
    --section-pad-y: 5rem;
    --content-max: 1200px;
}

@media (max-width: 900px) {
    :root {
        --section-pad-x: 2.5rem;
        --section-pad-y: 3.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-pad-x: 1.5rem;
        --section-pad-y: 2.5rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
    color: white;
}

a {
    color: #fff;
    text-decoration: none;
    text-decoration-color: rgba(255, 255, 255, 0.35);
    text-underline-offset: 0.2em;
    text-decoration-thickness: 0.08em;
    transition: color 0.2s ease, text-decoration-color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: var(--secondary);
    text-decoration-color: var(--secondary);
}

a:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: auto;
    height: auto;
    padding: 0.6rem 0.9rem;
    background: #fff;
    color: #000;
    z-index: 9999;
    clip: auto;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
}

body.home {
    background:
        radial-gradient(900px circle at 20% 15%, rgba(255, 77, 124, 0.22), transparent 55%),
        radial-gradient(700px circle at 80% 25%, rgba(29, 182, 161, 0.2), transparent 60%),
        linear-gradient(180deg, #1a0f2a 0%, #3a153f 45%, #120919 100%);
    background-attachment: fixed;
    min-height: 400vh;
}

body:not(.home) {
    background:
        radial-gradient(700px circle at 15% 20%, rgba(255, 77, 124, 0.18), transparent 60%),
        radial-gradient(600px circle at 85% 30%, rgba(29, 182, 161, 0.16), transparent 62%),
        #140b1f;
    background-attachment: fixed;
    color: #fff;
}

main {
    display: block;
}

.page-atmosphere {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.page-atmosphere .hand {
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    max-height: 70vh;
}

.page-atmosphere .static-hand {
    animation: hand-float 6s ease-in-out infinite;
}

.page-atmosphere .hand.left {
    left: 0;
    width: 200px;
}

.page-atmosphere .hand.right {
    right: 0;
    width: 200px;
}

.page-atmosphere .hand.right {
    animation-delay: 0.4s;
}

.bubbles-static {
    position: absolute;
    inset: 0;
}

.bubbles-static .bubble {
    animation: bubble-float 8s ease-in-out infinite;
    opacity: 0.5;
}

.bubbles-static .bubble:nth-child(1) {
    width: 8px;
    height: 8px;
}

.bubbles-static .bubble:nth-child(2) {
    width: 12px;
    height: 12px;
}

.bubbles-static .bubble:nth-child(3) {
    width: 10px;
    height: 10px;
}

.bubbles-static .bubble:nth-child(4) {
    width: 14px;
    height: 14px;
}

.bubbles-static .bubble:nth-child(5) {
    width: 9px;
    height: 9px;
}

.bubbles-static .bubble:nth-child(6) {
    width: 13px;
    height: 13px;
}

.bubbles-static .bubble:nth-child(7) {
    width: 7px;
    height: 7px;
}

.bubbles-static .bubble:nth-child(8) {
    width: 11px;
    height: 11px;
}

.bubbles-static .bubble:nth-child(9) {
    width: 6px;
    height: 6px;
}

.bubbles-static .bubble:nth-child(10) {
    width: 10px;
    height: 10px;
}

.bubbles-static .bubble:nth-child(3n) {
    animation-duration: 10s;
}

.bubbles-static .bubble:nth-child(4n) {
    animation-duration: 12s;
}

.bubbles-static .bubble:nth-child(5n) {
    animation-duration: 14s;
}

.bubbles-static .bubble:nth-child(2n) {
    opacity: 0.35;
    transform: scale(0.8);
}

.bubbles-static .bubble:nth-child(1) {
    top: 15%;
    left: 10%;
}

.bubbles-static .bubble:nth-child(2) {
    top: 32%;
    left: 24%;
}

.bubbles-static .bubble:nth-child(3) {
    top: 18%;
    left: 70%;
}

.bubbles-static .bubble:nth-child(4) {
    top: 60%;
    left: 18%;
}

.bubbles-static .bubble:nth-child(5) {
    top: 72%;
    left: 48%;
}

.bubbles-static .bubble:nth-child(6) {
    top: 48%;
    left: 82%;
}

.bubbles-static .bubble:nth-child(7) {
    top: 12%;
    left: 48%;
}

.bubbles-static .bubble:nth-child(8) {
    top: 78%;
    left: 70%;
}

.bubbles-static .bubble:nth-child(9) {
    top: 36%;
    left: 56%;
}

.bubbles-static .bubble:nth-child(10) {
    top: 84%;
    left: 12%;
}


.site-content {
    position: relative;
    z-index: 2;
}

@keyframes hand-float {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-48%) translateX(0);
    }
}

@keyframes bubble-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes image-filter {

    0%,
    100% {
        filter: saturate(1) contrast(1);
    }

    50% {
        filter: saturate(1.1) contrast(1.05);
    }
}

@keyframes image-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 1;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
}

.pop-circle-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.pop-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    animation: pop-fade 2.2s ease-out forwards;
    mix-blend-mode: screen;
}

@keyframes pop-fade {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    70% {
        opacity: 0.2;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.scroll-indicator {
    position: fixed;
    bottom: 5vh;
    right: 4vw;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    opacity: 0.7;
    z-index: 20;
    color: rgba(255, 255, 255, 0.7);
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    padding: 1.5rem var(--section-pad-x);
    pointer-events: none;
}

.top-bar .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 0.15rem 0;
}

.site-logo__img {
    height: clamp(24px, 3vw, 36px);
    width: auto;
    display: block;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.menu-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--secondary);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0);
}

.menu-toggle .dots {
    display: flex;
    gap: 6px;
}

.menu-toggle .dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-open .dots span:nth-child(1) {
    transform: translateX(6px);
}

.menu-toggle.is-open .dots span:nth-child(3) {
    transform: translateX(-6px);
}

.menu-toggle.is-open .dots span:nth-child(2) {
    opacity: 0;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform 0.5s ease;
    z-index: 25;
    display: flex;
    justify-content: flex-end;
}

.menu-overlay.is-open {
    transform: translateX(0);
}

.scroll-progress {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 9999;
    pointer-events: none;
}

.scroll-progress__bar {
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transform-origin: left center;
    transform: scaleX(0);
}

.menu-panel {
    width: 100%;
    height: 100%;
    padding: 6rem var(--section-pad-x) 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: transparent;
    list-style: none;
}

.menu-panel a {
    color: white;
    text-decoration: none;
    font-size: clamp(1.6rem, 2.4vw, 2.6rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.25s ease, border-color 0.25s ease, letter-spacing 0.25s ease;
}

.menu-panel li {
    list-style: none;
}

.menu-panel a:hover {
    transform: translateY(-3px);
    border-bottom-color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.18em;
}

.bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.bubble {
    position: absolute;
    width: 14px;
    height: 14px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

#intro .logo {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 1;
    z-index: 10;
    text-align: center;
}

#intro .logo img {
    width: min(60vw, 520px);
    height: auto;
}

#intro .logo span {
    font-size: 1.1rem;
    color: var(--ink);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-flex;
    gap: 0.4rem;
    align-items: baseline;
    background: #ffffff;
    padding: 0.25rem 0.6rem;
    border-radius: 0;
}

#intro .logo span .headline-serif {
    font-family: "Literata", serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--ink);
}

@media (max-width: 900px) {
    #intro .logo span {
        flex-direction: column;
        align-items: center;
    }

    #intro .logo span .headline-serif {
        display: block;
        width: 100%;
        text-align: center;
    }
}

#intro .hand {
    position: absolute;
    width: auto;
    height: 70vh;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

#intro .hand.left {
    left: -40%;
    transform: translateY(-50%);
}

#intro .hand.right {
    right: -40%;
}

#intro .intro-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--secondary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 1;
}

#intro .intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: black;
    opacity: 0;
}

#intro .video-stage {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    height: 72vh;
    transform: translate(-50%, -50%) scale(1);
    background: var(--secondary);
    z-index: 2;
    padding: 12px;
    box-sizing: border-box;
    opacity: 0;
}

#intro .video-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--section-pad-y) var(--section-pad-x);
    text-align: center;
    opacity: 0;
    pointer-events: none;
}

#intro .video-overlay .inner {
    position: relative;
    z-index: 1;
    max-width: var(--content-max);
    margin: 0 auto;
}

#intro .video-start {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--secondary);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 8;
    transition: transform 0.3s ease;
    opacity: 0;
    pointer-events: auto;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(255, 77, 124, 0.35);
}

#intro .video-stage .video-start {
    pointer-events: auto;
}

#intro .video-start .ring {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: pulse-ring 2.6s ease-out infinite;
    pointer-events: none;
}

#intro .video-start .ring.ring-2 {
    inset: -30px;
    animation-delay: 1.3s;
}

#intro .video-start .icon {
    position: relative;
    width: 24px;
    height: 24px;
}

#intro .video-start .icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.85);
    transform: translate(-45%, -50%);
}

#intro .video-start .icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 24px;
    background:
        linear-gradient(to right,
            rgba(255, 255, 255, 0.85) 0 6px,
            transparent 6px 10px,
            rgba(255, 255, 255, 0.85) 10px 16px,
            transparent 16px 22px);
    transform: translate(-50%, -50%);
    opacity: 0;
}

#intro .video-start.is-playing .icon::before {
    opacity: 0;
}

#intro .video-start.is-playing .icon::after {
    opacity: 1;
}

#intro .video-start:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

#intro .video-start.is-hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    20% {
        opacity: 0.7;
    }

    70% {
        opacity: 0.1;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

#intro .video-overlay h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    margin-bottom: 0.9rem;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    font-family: "Manrope", sans-serif;
}


.text-section {
    background: transparent;
    min-height: auto;
    padding: 0;
    display: flex;
    align-items: center;
}

.text-section__content {
    display: flex;
    width: 100%;
    min-height: auto;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: var(--section-pad-y) var(--section-pad-x);
}

.text-section__image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.text-section__image img {
    width: 100%;
    height: auto;
    max-width: 680px;
    object-fit: contain;
    animation: image-float 8s ease-in-out infinite, image-filter 10s ease-in-out infinite;
}

.text-section__content {
    align-items: center;
    column-gap: 4vw;
}

.text-section__panel {
    width: 100%;
    background: #ffffff;
    padding: 2.5rem;
    border-left: 8px solid var(--secondary);
}

.panel {
    width: 100%;
    background: #ffffff;
    padding: 2.5rem;
    border-left: 8px solid var(--secondary);
}

.text-section__panel h2 {
    color: var(--primary);
}

.text-section__panel p {
    color: var(--ink);
}

.u-headline-dots::after {
    content: "•••";
    color: var(--secondary);
    font-size: 0.55em;
    letter-spacing: 0.2em;
    margin-top: 0.4rem;
    display: block;
}

.text-section h2 {
    margin: 0 0 2rem 0;
    font-family: "Literata", serif;
    line-height: 1.1;
}

.text-section p {
    font-weight: normal;
}

.text-section img {
    width: 100%;
    margin: 5rem 0 0 0;
}

.overlay-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: transparent;
}

.overlay-section .image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-section .image.overlay {
    clip-path: inset(0 100% 0 0);
}

.overlay-section .overlay-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--section-pad-y) var(--section-pad-x);
    text-align: center;
    color: white;
}

.overlay-section .overlay-text .inner {
    max-width: 820px;
}

.overlay-section .overlay-text .eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-family: "Literata", serif;
    position: relative;
}

.overlay-section .overlay-text .eyebrow::after {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    margin: 0.6rem auto 0;
    background: currentColor;
}

.overlay-section .overlay-text h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    margin-bottom: 1rem;
}

.overlay-section .overlay-text p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
}


.site-content {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: var(--section-pad-y) var(--section-pad-x);
}

.site-content-inner {
    background: transparent;
    color: #fff;
    border-radius: 0;
    padding: var(--section-pad-y) var(--section-pad-x);
}

.site-content-inner a {
    color: inherit;
}

.error-panel {
    max-width: 520px;
    border-left: 6px solid var(--secondary);
    padding: 2rem;
}

.error-code {
    font-size: 3rem;
    letter-spacing: 0.2em;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.error-panel h1 {
    margin-bottom: 1rem;
}

.error-panel p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.error-panel form {
    margin-bottom: 1.5rem;
}

.error-panel input[type=\"search\"] {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
}

.error-panel input[type=\"submit\"] {
    margin-top: 0.6rem;
    padding: 0.6rem 1rem;
    border: none;
    background: var(--secondary);
    color: #fff;
    cursor: pointer;
}

.error-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: #fff;
}

.wpcf7 form {
    display: grid;
    gap: 1rem;
}

.wpcf7 label {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #fff;
}

.wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.wpcf7 .wpcf7-submit {
    justify-self: start;
    padding: 0.7rem 1.6rem;
    border: none;
    background: var(--secondary);
    color: #fff;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wpcf7 .wpcf7-not-valid-tip {
    color: var(--secondary);
    font-size: 0.85rem;
}

.wpcf7 .wpcf7-response-output {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 0.8rem 1rem;
}

.wpcf7 .wpcf7-list-item-label {
    font-size: 0.9rem;
}

.section-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: var(--section-pad-y) var(--section-pad-x);
}


.site-content h1,
.site-content h2,
.site-content h3,
.site-content h4,
.site-content h5,
.site-content h6 {
    margin-bottom: 1rem;
}

.site-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.site-footer {
    color: #fff;
    padding: var(--section-pad-y) var(--section-pad-x);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
}

.footer-title {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: "Literata", serif;
}

.footer-widget {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget a {
    color: inherit;
    text-decoration: none;
}

.footer-credit {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    max-width: var(--content-max);
    margin: 0 auto;
}

.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-footer>* {
    width: 100%;
    max-width: var(--content-max);
}

.footer-credit-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 900px) {
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    #intro .video-stage {
        width: 92vw;
        height: 80vh;
        padding: 0;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
    }

    #intro .logo img {
        width: min(70vw, 380px);
    }

    #intro .logo span {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }

    #intro .logo {
        top: 24%;
        transform: translateY(-50%);
    }

    #intro .intro-circle {
        top: 50%;
        left: 50%;
    }

    #intro .hand {
        height: 50vh;
        top: 50%;
        transform: translateY(-50%);
    }

    #intro .hand.left {
        left: -55%;
    }

    #intro .hand.right {
        right: -55%;
    }

    .page-atmosphere .hand {
        max-height: 35vh;
        top: auto;
        bottom: 0;
        transform: translateY(0);
    }

    .page-atmosphere .hand.left {
        top: auto;
        bottom: 0;
        left: 0;
        width: 80px;
        transform: translateY(0);
    }

    .page-atmosphere .hand.right {
        top: auto;
        bottom: 0;
        right: 0;
        width: 80px;
        transform: translateY(0);
    }

    .section-inner,
    .site-content,
    #intro .video-overlay,
    .overlay-section .overlay-text,
    .site-footer {
        padding: var(--section-pad-y) var(--section-pad-x);
    }

    .site-content-inner {
        padding: 0;
    }

    body:not(.home) .site-content {
        padding-top: calc(var(--section-pad-y) + 3.5rem);
    }

    .text-section__content {
        flex-direction: column;
        position: relative;
    }

    .text-section__image,
    .text-section__panel {
        width: 100%;
    }

    .text-section__image {
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        padding: 0;
        transform: translate(12%, -20%);
    }

    .text-section__panel {
        position: relative;
        padding-top: 3rem;
    }
}

@media (max-width: 768px) {
    #intro .hand.left {
        left: -45%;
    }

    #intro .hand.right {
        right: -45%;
    }
}

@media (max-width: 480px) {
    #intro .logo {
        top: 20%;
    }

    #intro .hand {
        top: 50%;
        transform: translateY(-50%);
    }

    #intro .hand.left {
        left: -100%;
    }

    #intro .hand.right {
        right: -100%;
    }
}
