:root {
    --ink: #3c3a37;
    --navy: #2b3a55;
    --navy-deep: #1d2740;
    --sunset: #e8734a;
    --sunset-dark: #d05f38;
    --gold: #f2a25c;
    --cream: #faf5ec;
    --cream-dark: #f1e8d8;
    --green: #7fa06b;
    --font-sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
    --font-serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.9;
    letter-spacing: 0.04em;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.pc { display: none; }
@media (min-width: 768px) { .pc { display: inline; } }
.sp-only { display: inline; }
@media (min-width: 768px) { .sp-only { display: none; } }
.nobr { white-space: nowrap; }

.section-kicker {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    color: var(--sunset);
    margin-bottom: 0.6em;
}
.section-kicker--light { color: var(--gold); }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 4.6vw, 2.4rem);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0.6em;
}
.section-title--light { color: #fff; }

.section-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), var(--sunset));
    margin-top: 14px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-title.is-shown::after { transform: scaleX(1); }
.spec .section-title::after { margin-inline: auto; transform-origin: center; }
.intro .intro__title::after { margin-inline: auto; transform-origin: center; }

@media (min-width: 768px) {
    .points > .container > .section-kicker,
    .points > .container > .section-title,
    .points > .container > .section-lead,
    .whom > .container > .section-kicker,
    .whom > .container > .section-title,
    .outline > .container > .section-kicker,
    .outline > .container > .section-title {
        text-align: center;
    }
    .points .section-title::after,
    .whom .section-title::after,
    .outline .section-title::after {
        margin-inline: auto;
        transform-origin: center;
    }
}

.section-lead { margin-bottom: 2.5em; }
.section-lead--light { color: rgba(255, 255, 255, 0.85); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6em;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    background: linear-gradient(135deg, var(--sunset), var(--sunset-dark));
    border: none;
    border-radius: 999px;
    padding: 1em 2.4em;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(232, 115, 74, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 30px rgba(232, 115, 74, 0.55);
}
.btn__arrow {
    width: 0.55em; height: 0.55em;
    border-top: 2.5px solid #fff;
    border-right: 2.5px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}
.btn:hover .btn__arrow { transform: rotate(45deg) translate(2px, -2px); }

.lp-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: linear-gradient(to bottom, rgba(29, 39, 64, 0.6), transparent);
    transition: background 0.3s ease;
}
.lp-header.is-solid {
    background: rgba(29, 39, 64, 0.92);
    backdrop-filter: blur(6px);
}
.lp-header__logo {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.14em;
    color: #fff;
}
.lp-header__logo span {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    opacity: 0.85;
}
.lp-header__cta {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: var(--sunset);
    border-radius: 999px;
    padding: 0.55em 1.4em;
    text-decoration: none;
    transition: background 0.25s ease;
}
.lp-header__cta:hover { background: var(--sunset-dark); }

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    padding: 90px 20px 120px;
}
.hero__sky {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        #1d2740 0%,
        #3a3f66 22%,
        #8c4f6d 48%,
        #d3694f 68%,
        #f2a25c 84%,
        #f8c979 100%);
    background-size: 100% 130%;
    animation: skyShift 14s ease-in-out infinite alternate;
}
@keyframes skyShift {
    from { background-position: 0 0; }
    to   { background-position: 0 60%; }
}
.hero__photo {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: none;
    background-image:
        linear-gradient(180deg, rgba(18, 14, 28, 0.5) 0%, rgba(18, 14, 28, 0.3) 45%, rgba(18, 14, 28, 0.52) 100%),
        url("../img/topimage.jpg");
    background-size: cover;
    background-position: center;
    animation: heroPhotoZoom 22s ease-in-out infinite alternate;
}
@media (orientation: portrait) {
    .hero__photo {
        background-image:
            linear-gradient(180deg, rgba(18, 14, 28, 0.5) 0%, rgba(18, 14, 28, 0.3) 45%, rgba(18, 14, 28, 0.52) 100%),
            url("../img/topimage_cs.jpg");
    }
}
@keyframes heroPhotoZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}
.is-hero-photo .hero__photo { display: block; }
.is-hero-photo .hero__scene,
.is-hero-photo .hero__house-img,
.is-hero-photo .hero__stars { display: none; }

.hero__stars {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.hero__star {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    box-shadow: 0 0 1.5px rgba(255, 255, 255, 0.6);
    animation: heroStarTwinkle var(--duration, 3s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}
@keyframes heroStarTwinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: var(--peak, 0.85); }
}
.hero__shooting-star {
    position: absolute;
    top: 10%;
    left: -6%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    filter: drop-shadow(0 0 6px #fff);
}
.hero__shooting-star::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -1px;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff);
    transform-origin: 100% 50%;
    transform: translateY(-50%) rotate(45deg);
}
.hero__shooting-star--1 {
    top: 12%;
    animation: heroShootingStar 9s ease-in infinite;
    animation-delay: 3s;
}
.hero__shooting-star--2 {
    top: 26%;
    left: -10%;
    animation: heroShootingStar 13s ease-in infinite;
    animation-delay: 7.5s;
}
@keyframes heroShootingStar {
    0% { transform: translate(0, 0); opacity: 0; }
    3% { opacity: 1; }
    16% { transform: translate(46vmin, 46vmin); opacity: 0; }
    100% { transform: translate(46vmin, 46vmin); opacity: 0; }
}

.hero__scene {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 46%;
    z-index: 1;
}
.hero__sun { animation: sunFloat 8s ease-in-out infinite alternate; }
@keyframes sunFloat {
    from { transform: translateY(0); }
    to   { transform: translateY(14px); }
}
.hero__sea { animation: seaSway 8.5s ease-in-out infinite alternate; }
@keyframes seaSway {
    from { transform: translateX(0); }
    to   { transform: translateX(70px); }
}
.hero__wave { animation: waveSway 4.5s ease-in-out infinite alternate; }
@keyframes waveSway {
    from { transform: translate(0, 0); }
    to   { transform: translate(-115px, 14px); }
}
.hero__house-img {
    position: absolute;
    left: 2%;
    right: auto;
    bottom: -13%;
    z-index: 1;
    width: min(720px, 56vw);
    height: auto;
    margin: 0;
    pointer-events: none;
    animation: houseFloat 9s ease-in-out infinite alternate;
    filter: drop-shadow(0 6px 26px rgba(0, 0, 0, 0.3));
}
@keyframes houseFloat {
    from { transform: translateY(0); }
    to   { transform: translateY(-5px); }
}
@media (max-width: 1024px) {
    .hero__house-img { width: min(700px, 76vw); left: 0; bottom: -12%; }
}
@media (max-width: 600px) {
    .hero__house-img {
        left: 0;
        right: 0;
        margin-inline: auto;
        width: 100vw;
        bottom: -8%;
    }
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 0.8em;
    font-size: clamp(0.66rem, 2.4vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    padding: 0.5em 1.3em;
    backdrop-filter: blur(4px);
    margin-bottom: 1.6em;
}
.hero__badge span {
    background: var(--sunset);
    border-radius: 999px;
    padding: 0.15em 0.9em;
    font-size: 0.95em;
}
.hero__title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(1.55rem, 6.2vw, 3.6rem);
    line-height: 1.55;
    text-shadow: 0 4px 30px rgba(29, 39, 64, 0.5);
    margin-bottom: 0.7em;
}
.hero__title-line { display: block; }
.hero__title-line--em {
    color: #ffdf9e;
    font-size: 1.15em;
}
.hero__sub {
    font-size: clamp(0.9rem, 2.6vw, 1.1rem);
    font-weight: 500;
    text-shadow: 0 2px 14px rgba(29, 39, 64, 0.6);
    margin-bottom: 1.6em;
}
.hero__date {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.15em;
    font-family: var(--font-serif);
    font-weight: 700;
    background: rgba(29, 39, 64, 0.55);
    border-radius: 16px;
    padding: 0.4em 1.2em;
    margin-bottom: 1.8em;
    backdrop-filter: blur(4px);
}
.hero__date-group {
    display: inline-flex;
    align-items: baseline;
    gap: 0.15em;
    white-space: nowrap;
}
.hero__date-group + .hero__date-group { margin-left: 0.6em; }
.hero__date-month, .hero__date-day { font-size: clamp(1.8rem, 6vw, 2.6rem); }
.hero__date-month small,
.hero__date-day small {
    font-size: 0.36em;
    font-weight: 700;
    margin-left: 0.06em;
}
.hero__date-month small { color: #ffdf9e; }
.hero__date-day small { color: rgba(255, 255, 255, 0.8); }
.hero__date-slash {
    font-size: clamp(1.3rem, 4.2vw, 1.8rem);
    color: #ffdf9e;
    margin: 0 0.15em;
    align-self: center;
    transform: translateY(0.06em);
}
.hero__date-dot { font-size: 1.4rem; opacity: 0.8; }
.hero__date-place {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: 0.6em;
    white-space: nowrap;
}
.btn--hero {
    display: flex;
    width: fit-content;
    margin-inline: auto;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.js-load-seq {
    opacity: 0;
    transform: translateY(26px);
    animation: loadSeq 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.js-load-seq:nth-of-type(1), .hero__badge.js-load-seq { animation-delay: 0.15s; }
.hero__title-line.js-load-seq:nth-child(1) { animation-delay: 0.45s; }
.hero__title-line.js-load-seq:nth-child(2) { animation-delay: 0.75s; }
.hero__sub.js-load-seq { animation-delay: 1.05s; }
.hero__date.js-load-seq { animation-delay: 1.3s; }
.btn--hero.js-load-seq { animation-delay: 1.55s; }
@keyframes loadSeq {
    to { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.hero__scroll span {
    width: 1px; height: 44px;
    background: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    position: relative;
}
.hero__scroll span::after {
    content: "";
    position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 100%;
    background: #fff;
    animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { top: -100%; }
    60%, 100% { top: 100%; }
}

.marquee {
    background: var(--navy-deep);
    color: var(--gold);
    overflow: hidden;
    padding: 0.7em 0;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    white-space: nowrap;
}
.marquee__track {
    display: inline-flex;
    animation: marquee 26s linear infinite;
}
.marquee__track span { flex-shrink: 0; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.js-reveal {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-reveal--left { transform: translateX(-56px); }
.js-reveal--right { transform: translateX(56px); }
.js-reveal.is-shown {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
}

.bg-shift {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-color: var(--cream);
    will-change: background-color;
    pointer-events: none;
}

.scroll-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 4px;
    z-index: 120;
    pointer-events: none;
}
.scroll-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--sunset), #b45b7a);
    border-radius: 0 2px 2px 0;
}

.intro {
    padding: 90px 0;
    text-align: center;
}
.intro__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 5.6vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 0.8em;
}
.intro__title em {
    font-style: normal;
    color: var(--sunset);
    border-bottom: 4px solid var(--gold);
}
.intro__lead { margin-bottom: 3em; }
.intro__cards {
    display: grid;
    gap: 20px;
    text-align: left;
}
@media (min-width: 768px) {
    .intro__cards { grid-template-columns: repeat(3, 1fr); }
}
.intro__card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: 0 10px 30px rgba(60, 58, 55, 0.08);
}
.intro__card-num {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5em;
}
.intro__card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5em;
}
.intro__card p:last-child { font-size: 0.92rem; }

.story {
    position: relative;
    padding: 100px 0;
    color: #fff;
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #6d4460 100%);
    overflow: hidden;
}
.story__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 24%, rgba(242, 162, 92, 0.35), transparent 42%),
        radial-gradient(circle at 12% 80%, rgba(232, 115, 74, 0.22), transparent 46%);
    pointer-events: none;
}
.story__grid {
    position: relative;
    display: grid;
    gap: 40px;
    align-items: center;
}
@media (min-width: 900px) {
    .story__grid { grid-template-columns: 1.05fr 1fr; }
}
.story__img {
    position: relative;
    margin-bottom: 26px;
}
.story__img img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.story__img figcaption {
    font-size: 0.72rem;
    opacity: 0.7;
    margin-top: 0.8em;
    text-align: left;
    pointer-events: none;
}
.story__real {
    position: absolute;
    right: -10px;
    bottom: -34px;
    z-index: 2;
    width: 36%;
    padding: 6px 6px 2px;
    background: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    transform: rotate(3deg);
    cursor: zoom-in;
    font: inherit;
    transition: transform 0.3s ease;
}
.story__real:hover { transform: rotate(1deg) scale(1.04); }
.story__real img {
    width: 100%;
    border-radius: 6px;
    box-shadow: none;
}
.story__real-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #4a4440;
    text-align: center;
    padding: 3px 0 2px;
    line-height: 1.4;
}
.story__real .point-card__zoom-icon {
    top: 12px;
    right: 12px;
    bottom: auto;
    width: 26px;
    height: 26px;
}
.story__real:hover .point-card__zoom-icon { background: rgba(232, 115, 74, 0.85); }
.story__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4.4vw, 2.2rem);
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 0.9em;
}
.story__text p + p { margin-top: 1.2em; }

.points { padding: 100px 0; }
.points__exterior {
    position: relative;
    margin: 44px 0 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(60, 58, 55, 0.14);
}
.points__exterior-btn {
    display: block;
    position: relative;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    font: inherit;
}
.points__exterior-btn img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    transition: transform 0.5s ease;
}
.points__exterior-btn:hover img { transform: scale(1.03); }
.points__exterior-hint {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    background: rgba(29, 39, 64, 0.55);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.5em 1.1em;
    transition: background 0.25s ease;
}
.points__exterior-btn:hover .points__exterior-hint { background: rgba(232, 115, 74, 0.85); }
.points__exterior-icon {
    width: 16px; height: 16px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
.points__exterior-icon::before,
.points__exterior-icon::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
}
.points__exterior-icon::before { width: 7px; height: 1.5px; }
.points__exterior-icon::after { width: 1.5px; height: 7px; }
@media (max-width: 600px) {
    .points__exterior-btn img { aspect-ratio: 4 / 3; object-position: center 30%; }
    .points__exterior-hint { font-size: 0.72rem; padding: 0.45em 0.9em; }
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 16, 26, 0.92);
    padding: 24px;
    cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
    max-width: min(92vw, 1100px);
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    cursor: default;
}
.lightbox__close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.18); }
.points__floor {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 70px 0 26px;
}
.points__floor:first-of-type { margin-top: 40px; }
.points__floor span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.points__grid {
    display: grid;
    gap: 26px;
}
@media (min-width: 700px) {
    .points__grid { grid-template-columns: repeat(2, 1fr); }
    .points__grid > .point-card:first-child { grid-column: 1 / -1; }
    .points__grid > .point-card:first-child figure img { aspect-ratio: 21 / 9; object-fit: cover; }
    .points__grid--two > .point-card:first-child { grid-column: auto; }
    .points__grid--two > .point-card:first-child figure img { aspect-ratio: 4 / 3; }
}
.point-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(60, 58, 55, 0.1);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
}
.point-card:hover { box-shadow: 0 18px 44px rgba(60, 58, 55, 0.16); }
.point-card figure {
    position: relative;
    overflow: hidden;
}
.point-card figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.point-card:hover figure img { transform: scale(1.05); }
.point-card__zoom {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    font: inherit;
}
.point-card__zoom-icon {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(29, 39, 64, 0.55);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: background 0.25s ease;
}
.point-card__zoom-icon::before,
.point-card__zoom-icon::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
}
.point-card__zoom-icon::before { width: 12px; height: 2px; }
.point-card__zoom-icon::after { width: 2px; height: 12px; }
.point-card:hover .point-card__zoom-icon { background: rgba(232, 115, 74, 0.85); }
.point-card__body { padding: 24px 26px 30px; }
.point-card__tag {
    font-family: var(--font-serif);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    color: var(--sunset);
    margin-bottom: 0.7em;
}
.point-card__body h3 {
    font-size: 1.12rem;
    line-height: 1.6;
    margin-bottom: 0.55em;
}
.point-card__body p:last-child { font-size: 0.92rem; }

.spec {
    padding: 100px 0;
    background:
        radial-gradient(circle at 85% 10%, rgba(242, 162, 92, 0.25), transparent 40%),
        linear-gradient(170deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: #fff;
    text-align: center;
}
@media (max-width: 767px) {
    .spec .section-kicker,
    .spec .section-title,
    .spec .section-lead { text-align: left; }
    .spec .section-title::after { margin-inline: 0; transform-origin: left; }
}
.spec__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 40px 0 34px;
}
@media (min-width: 820px) {
    .spec__grid { grid-template-columns: repeat(4, 1fr); }
}
.spec__item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 28px 14px 24px;
    backdrop-filter: blur(4px);
}
.spec__label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.3em;
}
.spec__value {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 7vw, 3.4rem);
    font-weight: 700;
    line-height: 1.2;
}
.spec__value small {
    font-size: 0.38em;
    margin-left: 0.2em;
}
.spec__note {
    font-size: 0.72rem;
    opacity: 0.8;
    margin-top: 0.4em;
}
.spec__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin-bottom: 1.4em;
}
.spec__badges li {
    font-size: 0.85rem;
    font-weight: 700;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 999px;
    padding: 0.35em 1.1em;
}
.spec__caution {
    font-size: 0.75rem;
    opacity: 0.75;
}

.whom { padding: 100px 0; }
.whom__list {
    list-style: none;
    display: grid;
    gap: 16px;
    margin: 30px 0;
}
.whom__list li {
    background: #fff;
    border-left: 6px solid var(--sunset);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 8px 22px rgba(60, 58, 55, 0.07);
}
.whom__list strong { color: var(--navy); }
.whom__note {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.08rem;
    color: var(--sunset-dark);
}

.outline {
    position: relative;
    padding: 90px 0;
    background-image:
        linear-gradient(180deg, rgba(24, 22, 34, 0.52) 0%, rgba(24, 22, 34, 0.22) 42%, rgba(24, 22, 34, 0.10) 100%),
        url("../img/balcony.jpg");
    background-size: cover;
    background-position: center;
}
.outline .section-kicker { color: var(--gold); }
.outline .section-title {
    color: #fff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.outline__box {
    background: #fff;
    border-radius: 20px;
    padding: 14px 28px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}
.outline__box dl div {
    display: grid;
    grid-template-columns: 6.5em 1fr;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px dashed #d8cdb8;
}
.outline__box dl div:last-child { border-bottom: none; }
.outline__box dt {
    font-weight: 700;
    color: var(--sunset-dark);
}
.outline__box small {
    font-size: 0.8rem;
    color: #8a8377;
}
@media (min-width: 681px) {
    .outline__box dl div {
        grid-template-columns: 6.5em 25em;
        justify-content: center;
    }
}
@media (max-width: 680px) {
    .outline__box dl div {
        grid-template-columns: 1fr;
        gap: 3px;
        padding: 16px 0;
    }
    .outline__box dt { font-size: 0.85rem; }
}

.reserve {
    padding: 100px 0 80px;
    background:
        radial-gradient(circle at 15% 12%, rgba(242, 162, 92, 0.28), transparent 42%),
        linear-gradient(200deg, #6d4460 0%, var(--navy) 45%, var(--navy-deep) 100%);
    color: #fff;
}
.reserve > .container > .section-kicker,
.reserve > .container > .section-title,
.reserve > .container > .section-lead {
    text-align: center;
}
.reserve .section-title::after { margin-inline: auto; transform-origin: center; }
.reserve__promise {
    display: block;
    width: fit-content;
    max-width: 100%;
    font-weight: 700;
    text-align: center;
    color: #ffdf9e;
    border: 1.5px solid rgba(255, 223, 158, 0.55);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.8em 1.4em;
    margin: -0.6em auto 2.4em;
    line-height: 1.8;
}
.rsv-form {
    background: #fff;
    color: var(--ink);
    border-radius: 24px;
    padding: 40px 26px;
    max-width: 760px;
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
    .rsv-form { padding: 50px 56px; }
}
.hp {
    position: absolute !important;
    left: -9999px;
    width: 1px; height: 1px;
    overflow: hidden;
}
.req {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    background: var(--sunset);
    border-radius: 4px;
    padding: 0.1em 0.6em;
    margin-left: 0.5em;
    vertical-align: middle;
}
.rsv-form__fieldset {
    border: none;
    margin-bottom: 30px;
}
.rsv-form__fieldset legend {
    font-weight: 700;
    margin-bottom: 0.8em;
}
.rsv-form__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.chip { cursor: pointer; }
.chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.chip span {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25em;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid var(--cream-dark);
    background: var(--cream);
    border-radius: 12px;
    padding: 0.6em 1.3em;
    transition: all 0.2s ease;
}
.chip span small {
    font-size: 0.7em;
    color: #9a917f;
}
.chip:hover span { border-color: var(--gold); }
.chip input:checked + span {
    background: var(--sunset);
    border-color: var(--sunset);
    color: #fff;
}
.chip input:checked + span small { color: rgba(255, 255, 255, 0.85); }
.chip input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }
.rsv-form__hint {
    font-size: 0.75rem;
    color: #9a917f;
    margin-top: 0.7em;
}
.rsv-form__row {
    display: grid;
    gap: 0;
}
@media (min-width: 640px) {
    .rsv-form__row {
        grid-template-columns: 1fr 1fr;
        gap: 0 22px;
    }
}
.rsv-form__field {
    display: block;
    margin-bottom: 24px;
}
.rsv-form__field > span {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 0.5em;
}
.rsv-form__field input,
.rsv-form__field select,
.rsv-form__field textarea {
    width: 100%;
    font: inherit;
    font-size: 1rem;
    color: var(--ink);
    background: var(--cream);
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    padding: 0.8em 1em;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.rsv-form__field input:focus,
.rsv-form__field select:focus,
.rsv-form__field textarea:focus {
    outline: none;
    border-color: var(--sunset);
    background: #fff;
}
.rsv-form__field textarea { resize: vertical; }
.rsv-form__privacy {
    font-size: 0.78rem;
    color: #8a8377;
    margin-bottom: 26px;
}
.rsv-form__privacy a { color: var(--sunset-dark); }
.btn--submit {
    width: 100%;
    font-size: 1.15rem;
    padding: 1.1em;
}
.rsv-form__error {
    color: #c0392b;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1em;
}

.lp-footer {
    position: relative;
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
    padding: 56px 0 64px;
}
.lp-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 66px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, var(--gold), var(--sunset));
    animation: footerLinePulse 3.2s ease-in-out infinite;
}
@keyframes footerLinePulse {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 0 rgba(242, 162, 92, 0); }
    50% { opacity: 1; box-shadow: 0 0 14px rgba(242, 162, 92, 0.7); }
}
.lp-footer__logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    letter-spacing: 0.26em;
    color: #fff;
    margin-bottom: 0.35em;
}
.lp-footer__name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.3em;
}
.lp-footer__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0 auto 2.2em;
}
.lp-footer__tags li {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0.4em 1em;
}
.lp-footer__info {
    font-size: 0.85rem;
    line-height: 2;
    max-width: 460px;
    margin: 0 auto 1.8em;
    padding-top: 1.8em;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.lp-footer__info a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}
.lp-footer__copy {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    opacity: 0.5;
}

.float-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    display: flex;
    justify-content: center;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: linear-gradient(to top, rgba(29, 39, 64, 0.85), transparent);
    transform: translateY(120%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.float-cta.is-active {
    transform: translateY(0);
    pointer-events: auto;
}
.btn--float {
    width: 100%;
    max-width: 480px;
    font-size: 1rem;
    padding: 0.9em 1.4em;
    gap: 1em;
    animation: ctaPulse 2.4s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(232, 115, 74, 0.45); }
    50% { box-shadow: 0 8px 24px rgba(232, 115, 74, 0.45), 0 0 0 10px rgba(232, 115, 74, 0.14); }
}
.btn--float-date {
    font-family: var(--font-serif);
    background: rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 0.15em 0.7em;
    font-size: 0.92em;
    white-space: nowrap;
}
.btn--float-date small { font-size: 0.7em; }

.cookie-consent-banner {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 110;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    color: var(--ink);
    border-radius: 16px;
    box-shadow: 0 14px 44px rgba(29, 39, 64, 0.3);
    padding: 18px 20px 16px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.cookie-consent-banner.is-hidden {
    transform: translateY(24px);
    opacity: 0;
    pointer-events: none;
}
.cookie-consent-banner__text {
    font-size: 0.78rem;
    line-height: 1.7;
    margin-bottom: 12px;
}
.cookie-consent-banner__text a {
    color: var(--sunset-dark);
    font-weight: 700;
}
.cookie-consent-banner__buttons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
@media (max-width: 899px) {
    .cookie-consent-banner {
        left: 12px;
        right: 12px;
        max-width: none;
        bottom: calc(84px + env(safe-area-inset-bottom));
    }
}

.btn-consent {
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 8px;
    padding: 0.45em 1.2em;
    cursor: pointer;
}
.btn-consent--outline {
    color: var(--navy);
    background: transparent;
}
