html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Jost", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
body::-webkit-scrollbar {
    display: none;
}
footer {
    background-color: #00000000;
    color: rgb(0, 0, 0);
    text-align: left;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    position: static;
    margin: 0;
}
.land h1{
    font-size: 4rem;
    margin: 0;
}
.full-bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero {
    position: relative;
    height: 100vh;
    min-height: 400px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/images/place.png') center center/cover no-repeat;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.hero-title {
    position: absolute;
    left: 0;
    bottom: 3rem;
    width: 100%;
    z-index: 1;
    padding: 2rem 3rem;
    text-align: left;
    transition:
        font-size 0.4s cubic-bezier(.4,0,.2,1),
        padding 0.4s cubic-bezier(.4,0,.2,1),
        background 0.4s cubic-bezier(.4,0,.2,1),
        color 0.4s cubic-bezier(.4,0,.2,1),
        box-shadow 0.4s cubic-bezier(.4,0,.2,1);
    background: transparent;
}
.hero-title h1 {
    font-size: 3rem;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    font-weight: 700;
    transition: font-size 0.4s cubic-bezier(.4,0,.2,1), color 0.4s cubic-bezier(.4,0,.2,1);
}
.hero-title.morph {
    position: fixed;
    top: 0;
    left: 0;
    bottom: auto;
    width: 100%;
    padding: 0.7rem 2rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: left;
}
.hero-title.morph h1 {
    font-size: 1.3rem;
    color: #222;
    text-shadow: none;
}
.content {
    background: #fff;
    padding: 0;
}
.container {
    max-width: 900px;
    margin: 0 auto;
}
.section-grid {
    display: grid;
    grid-template-rows: 1fr 3fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    min-width: 0;
    position: relative;
    grid-gap: 0;
    padding: 0;
    height: 100%;
}
.section-title {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    align-self: start;
    justify-self: start;
    margin-left: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}
.section-desc {
    grid-row: 3 / 4;
    grid-column: 3 / 4;
    align-self: end;
    justify-self: end;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    max-width: 300px;
    text-align: right;
}
.placeholders {
    grid-row: 2 / 3;
    grid-column: 1 / 4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.placeholder {
    position: relative;
    width: 240px;
    height: 240px;
    background: #e0e0e0;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: wiggle 1.8s ease-in-out infinite;
    transition: transform 0.2s;
}
.placeholder:hover {
    animation: none;
    transform: scale(1.04);
}
.placeholder-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 1.5rem;
}
.placeholder-text {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(10px);
    margin-top: 0;
    background: #fff;
    color: #222;
    padding: 0.7rem 1.2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 1rem;
    min-width: 180px;
    max-width: 320px;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.22s cubic-bezier(.4,2,.6,1),
        transform 0.22s cubic-bezier(.4,2,.6,1);
    z-index: 10;
}
.placeholder-row:hover .placeholder-text {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(30px);
}
.snap-container {
    height: 100vh;
    height: 100dvh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}
section {
    height: 100vh;
    scroll-snap-align: start;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
section:nth-of-type(1) {
    background: #ffefd2;
}
section:nth-of-type(2) {
    background: #bed1fc;
}
section:nth-of-type(3) {
    background: #ffaeae;
}
section:nth-of-type(4) {
    background: #baffc1;
}
.section-indicator {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 2000;
    background: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.section-indicator .arrow {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #ffffff;
    padding: 0.1rem 0.2rem;
    transition: color 0.2s;
    line-height: 1;
}
.section-indicator .arrow:disabled {
    color: #000000;
    cursor: default;
    opacity: 0;
    pointer-events: none;
}
.section-indicator .dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
}
.section-indicator .dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #777;
    opacity: 0.3;
    transform: scale(1);
    transition:
        background 0.2s,
        transform 0.2s cubic-bezier(.4,2,.6,1),
        opacity 0.2s;
    margin: 0;
    will-change: transform;
    pointer-events: auto;
}
.section-indicator .dot.visible {
    transition: transform 0.2s cubic-bezier(.4,2,.6,1), background 0.2s, opacity 0.2s;
}
.section-indicator .dot.visible:hover {
    z-index: 2;
    transform: scale(1.6);
    background: #fff;
    opacity: 1;
}
.section-indicator .dot.visible:hover + .dot.visible,
.section-indicator .dot.visible:has(+ .dot.visible:hover) {
    z-index: 1;
    transform: scale(1.2);
    opacity: 1;
}
.section-indicator .dot.visible {
    opacity: 1;
}
.section-indicator .dot.active {
    background: #fff;
    opacity: 1;
    transform: scale(1.3);
}
.section-indicator .dots:hover .dot.visible {
    transition: transform 0.2s cubic-bezier(.4,2,.6,1), background 0.2s, opacity 0.2s;
}
.section-indicator .dots:hover .dot.visible {
    transform: scale(1.1);
}
.section-indicator .dots:hover .dot.active {
    transform: scale(1.6);
}
.section-indicator .dots:hover .dot.visible:not(.active) {
    transform: scale(1.1);
}
@keyframes wiggle-once {
    0% { transform: rotate(0deg) scale(1);}
    10% { transform: rotate(-2deg) scale(1.03);}
    20% { transform: rotate(2deg) scale(1.04);}
    30% { transform: rotate(-1.5deg) scale(1.02);}
    40% { transform: rotate(1.5deg) scale(1.03);}
    50% { transform: rotate(0deg) scale(1);}
    100% { transform: rotate(0deg) scale(1);}
}
.placeholder.animate-once {
    animation: wiggle-once 1s ease-in-out;
}
.section-footer {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #11111100;
    color: #000000;
    padding: 1.5rem 2rem;
    font-size: 1rem;
    z-index: 10;
    text-align: left;
    max-width: fit-content;
}
.section-grid {
    position: relative;
}
@media (max-width: 600px) {
    .placeholders {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding-left: 1.5rem;
    }
    .placeholder-row {
        flex-direction: row;
        align-items: center;
        position: static;
        margin-bottom: 1rem;
    }
    .placeholder {
        flex-direction: row;
        width: 25vw;
        height: 100px;
        min-width: 0;
        justify-content: flex-start;
        align-items: center;
        position: relative;
    }
    .placeholder-text {
        display: block;
        position: static;
        transform: none;
        margin: 0 0 0 1rem;
        background: none;
        color: #222;
        box-shadow: none;
        font-size: 1rem;
        white-space: normal;
        padding: 0;
        max-width: 200px;
        min-width: 0;
        opacity: 1;
        pointer-events: auto;
        transition: none;
        flex: 1 1 auto;
        max-height: 95px;
    }
    .placeholder:hover .placeholder-text {
        display: block;
        opacity: 1;
        transform: none;
    }
    .section-desc {
        font-size: 1rem;
    }
    .section-indicator .dot {
        width: 0.35rem;
        height: 0.35rem;
        margin: 0;
    }
    .snap-container {
        scroll-snap-type: y proximity;
    }
    .section-footer{
        font-size: 0.7rem;
        padding: 1rem 1rem;
    }
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  @media (max-width: 900px) and (hover: none) and (pointer: coarse) {
    section {
    min-height: 100vh;
      padding-bottom: env(safe-area-inset-bottom);
    }
  }
}

