:root {
    --cream:   #F7F3EE;
    --light:   #E6E1D9;
    --mid:     #C4B5A8;
    --main:    #91867B;
    --dark:    #5C4F46;
    --text:    #3A2F2B;
    --black:   #1A1210;
    --white:   #FDFAF7;
    --en: 'Cormorant Garamond', serif;
    --kr: 'Noto Serif KR', serif;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--kr); background: var(--white); color: var(--text); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── HEADER ── */
#hd {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 52px;
    transition: padding .4s ease, background .4s ease, box-shadow .4s ease;
}
#hd.on {
    padding: 14px 52px;
    background: rgba(253,250,247,.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(145,134,123,.18);
}
.hd-logo {
    font-family: var(--en); font-size: 20px; font-weight: 400;
    letter-spacing: .18em; color: var(--white); transition: color .4s;
}
#hd.on .hd-logo { color: var(--dark); }
.hd-nav { display: flex; align-items: center; gap: 32px; }
.hd-nav a {
    font-size: 12px; font-weight: 300; letter-spacing: .06em;
    color: rgba(253,250,247,.8); transition: color .3s;
}
.hd-nav a:hover { color: var(--white); }
#hd.on .hd-nav a { color: var(--main); }
#hd.on .hd-nav a:hover { color: var(--dark); }
.hd-reserve {
    font-size: 11px; font-weight: 300; letter-spacing: .1em;
    padding: 9px 22px; border: 1px solid rgba(253,250,247,.55);
    color: var(--white); transition: all .3s;
}
.hd-reserve:hover { background: rgba(253,250,247,.15); }
#hd.on .hd-reserve { border-color: var(--main); color: var(--main); }
#hd.on .hd-reserve:hover { background: var(--main); color: var(--white); }
.hd-ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hd-ham span { width: 24px; height: 1.5px; background: var(--white); transition: background .4s; }
#hd.on .hd-ham span { background: var(--dark); }

/* ── MOBILE MENU ── */
.mob-menu {
    display: flex; position: fixed; inset: 0; z-index: 1100;
    background: rgba(253,250,247,.98);
    flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    transform: translateX(100%); visibility: hidden; pointer-events: none;
    transition: transform .42s cubic-bezier(.4,0,.2,1), visibility 0s linear .42s;
}
.mob-menu.open {
    transform: translateX(0); visibility: visible; pointer-events: all;
    transition: transform .42s cubic-bezier(.4,0,.2,1);
}
.mob-menu a { font-size: 20px; font-weight: 300; letter-spacing: .06em; color: var(--dark); }
.mob-close {
    position: absolute; top: 22px; right: 28px; font-size: 26px;
    background: none; border: none; color: var(--dark); cursor: pointer;
}

/* ── HERO ── */
#hero {
    position: relative; height: 100vh; min-height: 680px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('../img/place/place0.png') center/cover no-repeat;
    animation: kenburns 14s ease-in-out infinite alternate;
}
@keyframes kenburns {
    from { transform: scale(1.0); }
    to   { transform: scale(1.06); }
}
.hero-ov {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,18,16,.32) 0%, rgba(26,18,16,.54) 60%, rgba(26,18,16,.72) 100%);
}
.hero-body { position: relative; text-align: center; color: var(--white); padding: 0 20px; }
.hero-sub {
    font-family: var(--en); font-size: 12px; font-weight: 300;
    letter-spacing: .35em; opacity: .7; margin-bottom: 18px;
}
.hero-title {
    font-family: var(--en); font-size: clamp(68px, 11vw, 128px);
    font-weight: 300; letter-spacing: .1em; line-height: .88; margin-bottom: 22px;
}
.hero-title em { display: block; font-style: italic; color: var(--light); }
.hero-tagline {
    font-family: var(--kr); font-size: 14px; font-weight: 200;
    letter-spacing: .18em; opacity: .75; margin-bottom: 44px;
}
.hero-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-wh {
    font-size: 12px; font-weight: 300; letter-spacing: .12em;
    padding: 13px 34px; background: var(--white); color: var(--dark); transition: background .3s;
}
.btn-wh:hover { background: var(--light); }
.btn-ol {
    font-size: 12px; font-weight: 300; letter-spacing: .12em;
    padding: 13px 34px; border: 1px solid rgba(253,250,247,.55);
    color: var(--white); transition: background .3s;
}
.btn-ol:hover { background: rgba(253,250,247,.15); }
.hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(253,250,247,.5); font-size: 9px; letter-spacing: .25em;
}
.scroll-line {
    width: 1px; height: 40px; background: rgba(253,250,247,.35);
    animation: sline 2.2s ease-in-out infinite;
}
@keyframes sline {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── SECTION BASE ── */
.sec { padding: 96px 0; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.eye {
    font-family: var(--en); font-size: 10px; font-weight: 400;
    letter-spacing: .36em; color: var(--main); text-transform: uppercase; margin-bottom: 10px;
}
.sec-title {
    font-family: var(--en); font-size: clamp(34px, 5vw, 54px);
    font-weight: 300; letter-spacing: .04em; color: var(--dark); line-height: 1.08;
}
.divider { width: 36px; height: 1px; background: var(--mid); margin: 20px 0; }
.sec-desc {
    font-size: 14px; font-weight: 300; color: var(--main);
    line-height: 2.1; letter-spacing: .03em; max-width: 440px;
}

/* fade animation */
.fi { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.fi.vis { opacity: 1; transform: translateY(0); }
.fi.d1 { transition-delay: .1s; } .fi.d2 { transition-delay: .2s; }
.fi.d3 { transition-delay: .3s; } .fi.d4 { transition-delay: .4s; }

/* ── ABOUT ── */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-quote {
    font-family: var(--en); font-size: clamp(28px, 3.8vw, 46px);
    font-style: italic; font-weight: 300; color: var(--dark); line-height: 1.3;
}
.about-quote span { color: var(--main); }
.about-text { font-size: 14px; font-weight: 300; color: var(--text); line-height: 2.3; letter-spacing: .03em; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 44px; }
.stat { text-align: center; padding: 22px 12px; border: 1px solid var(--light); }
.stat-n { font-family: var(--en); font-size: 34px; font-weight: 300; color: var(--dark); display: block; }
.stat-l { font-size: 11px; font-weight: 300; color: var(--main); letter-spacing: .08em; margin-top: 4px; display: block; }

/* ── PORTFOLIO ── */
#portfolio { background: var(--cream); }
.port-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; }
.port-nav-mob { display: none; justify-content: center; gap: 10px; margin-top: 22px; }
.swp-nav { display: flex; gap: 10px; }
.slider-wrap {
    position: relative;
}
.slider-prev, .slider-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px; border-radius: 50%; z-index: 10;
    background: var(--white); border: 1px solid var(--light);
    color: var(--dark); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(58,47,43,.1);
    transition: background .25s, border-color .25s, box-shadow .25s;
}
.slider-prev { left: -18px; }
.slider-next { right: -18px; }
.slider-prev:hover, .slider-next:hover {
    background: var(--dark); border-color: var(--dark); color: var(--white);
    box-shadow: 0 4px 18px rgba(58,47,43,.18);
}
@media (max-width: 768px) {
    .slider-prev, .slider-next { display: none; }
}
.swiper-port { overflow: hidden; }
.port-card { position: relative; overflow: hidden; background: var(--light); aspect-ratio: 3/4; }
.port-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.port-card:hover img { transform: scale(1.05); }
.port-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px 20px 20px;
    background: linear-gradient(transparent, rgba(26,18,16,.72));
    color: var(--white);
    z-index: 3;
}
.port-name { font-size: 14px; font-weight: 400; letter-spacing: .04em; margin-bottom: 3px; }
.port-designer { font-size: 10px; font-weight: 200; letter-spacing: .14em; color: rgba(253,250,247,.6); margin-bottom: 5px; }
.port-tags { font-size: 11px; font-weight: 200; opacity: .7; letter-spacing: .02em; }

/* ── PORTFOLIO FILTER ── */
.port-filter { display: flex; gap: 6px; margin-bottom: 32px; }
.pf-sex { margin-bottom: 10px; }
.pf-btn {
    font-family: var(--en); font-size: 11px; font-weight: 300;
    letter-spacing: .14em; padding: 7px 22px;
    border: 1px solid var(--mid); background: transparent;
    color: var(--main); cursor: pointer; transition: all .25s;
}
.pf-btn:hover { border-color: var(--dark); color: var(--dark); }
.pf-btn.active { background: var(--dark); border-color: var(--dark); color: var(--white); }

/* ── BIZ STATUS ── */
#biz-status { font-size: 11px; font-weight: 400; letter-spacing: .04em; }
.biz-open   { color: #03C75A; }
.biz-closed { color: var(--mid); }

/* ── BLUR UP ── */
.blur-up { filter: blur(10px); transition: filter .5s ease; }
.blur-up.img-loaded { filter: blur(0); }

/* ── PRICE ── */
#price { background: var(--white); }
.price-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; }
.price-nav-mob { display: none; justify-content: center; gap: 10px; margin-top: 22px; }
.swiper-price { overflow: hidden; }
.price-card {
    position: relative; overflow: hidden; background: var(--cream); cursor: pointer;
    transition: box-shadow .3s;
}
.price-card:hover { box-shadow: 0 8px 32px rgba(58,47,43,.12); }
.price-card img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.price-card:hover img { transform: scale(1.03); }

/* ── GALLERY ── */
#gallery { background: var(--dark); }
#gallery .eye { color: var(--mid); }
#gallery .sec-title { color: var(--light); }
#gallery .sec-desc { color: var(--mid); }
#gallery .divider { background: rgba(196,181,168,.35); }
.gal-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px; margin-top: 52px;
}
.gal-item { position: relative; overflow: hidden; cursor: pointer; }
.gal-item:first-child { grid-column: span 2; grid-row: span 2; }
.gal-item img { width: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.gal-item:first-child img { height: 520px; }
.gal-item:not(:first-child) img { height: 255px; }
.gal-item:hover img { transform: scale(1.06); }

/* ── DESIGNER ── */
#designer { background: var(--cream); }
.des-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 56px; }
.des-card {}
.des-photo {
    position: relative; overflow: hidden; background: var(--light);
    aspect-ratio: 3/4; margin-bottom: 28px;
}
.des-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s ease; }
.des-card:hover .des-photo img { transform: scale(1.04); }
.des-badge {
    position: absolute; bottom: 18px; left: 18px;
    background: var(--white); padding: 6px 14px;
    font-size: 10px; font-weight: 300; color: var(--main); letter-spacing: .12em;
}
.des-name { font-size: 21px; font-weight: 400; color: var(--dark); margin-bottom: 6px; }
.des-role { font-family: var(--en); font-size: 11px; letter-spacing: .22em; color: var(--main); margin-bottom: 14px; }
.des-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tag {
    font-size: 11px; font-weight: 300; color: var(--main);
    background: var(--white); border: 1px solid var(--light);
    padding: 4px 10px; letter-spacing: .02em;
}
.des-off { font-size: 11px; font-weight: 300; color: var(--mid); letter-spacing: .04em; margin-bottom: 14px; }
.des-desc { font-size: 13px; font-weight: 300; color: var(--text); line-height: 2.2; letter-spacing: .02em; }
.des-awards { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--light); }
.award-title { font-family: var(--en); font-size: 10px; letter-spacing: .2em; color: var(--main); margin-bottom: 6px; }
.award-list { list-style: none; }
.award-list li { font-size: 12px; font-weight: 300; color: var(--text); line-height: 2.1; letter-spacing: .02em; }

/* ── LOCATION ── */
#location { background: var(--white); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; margin-top: 56px; }
.loc-map img { width: 100%; border: 1px solid var(--light); }
.loc-row { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--light); }
.loc-icon { font-size: 14px; flex-shrink: 0; width: 18px; text-align: center; margin-top: 2px; }
.loc-lbl { font-family: var(--en); font-size: 10px; letter-spacing: .2em; color: var(--main); display: block; margin-bottom: 4px; }
.loc-val { font-size: 14px; font-weight: 300; color: var(--text); line-height: 1.8; letter-spacing: .02em; }
.loc-note {
    margin-top: 28px; padding: 24px 26px;
    background: var(--cream); border-left: 2px solid var(--main);
}
.loc-note p { font-size: 13px; font-weight: 300; color: var(--text); line-height: 2.1; letter-spacing: .03em; }
.loc-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.btn-nv {
    font-size: 12px; font-weight: 300; letter-spacing: .08em;
    padding: 12px 28px; background: #03C75A; color: var(--white); transition: opacity .3s;
}
.btn-nv:hover { opacity: .85; }
.btn-ig {
    font-size: 12px; font-weight: 300; letter-spacing: .08em;
    padding: 12px 28px; border: 1px solid var(--main); color: var(--main); transition: all .3s;
}
.btn-ig:hover { background: var(--main); color: var(--white); }

/* ── LIGHTBOX ── */
.lbx {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(26,18,16,.94);
    align-items: center; justify-content: center;
    touch-action: none;
    user-select: none; -webkit-user-select: none;
    cursor: ew-resize;
}
.lbx.on { display: flex; }
.lbx-img-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.lbx img {
    max-width: 88vw; max-height: 86vh; object-fit: contain; display: block;
    pointer-events: none; user-select: none;
    -webkit-user-drag: none; -webkit-user-select: none;
}
.lbx-close, .lbx-share {
    position: absolute; top: 22px;
    color: var(--white); background: none; border: none; cursor: pointer; opacity: .65;
    transition: opacity .2s;
}
.lbx-close:hover, .lbx-share:hover { opacity: 1; }
.lbx-close { right: 28px; font-size: 28px; line-height: 1; }
.lbx-share { right: 70px; display: flex; align-items: center; }
.lbx-designer {
    position: absolute; bottom: 26px; left: 28px;
    font-family: var(--kr); font-size: 12px; letter-spacing: .08em;
    color: rgba(253,250,247,.8);
    text-shadow: 0 1px 6px rgba(0,0,0,.7);
    pointer-events: none; white-space: nowrap;
}
#toast {
    position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%);
    background: rgba(26,18,16,.88); color: var(--white);
    padding: 10px 24px; border-radius: 20px;
    font-size: 13px; font-weight: 300; letter-spacing: .04em;
    z-index: 10000; pointer-events: none;
    opacity: 0; transition: opacity .3s; white-space: nowrap;
}
#toast.show { opacity: 1; }
.lbx-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(253,250,247,.07);
    border: 1px solid rgba(253,250,247,.28); color: var(--white);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .25s, border-color .25s, transform .25s; z-index: 1;
}
.lbx-arrow:hover {
    background: rgba(253,250,247,.18); border-color: rgba(253,250,247,.65);
    transform: translateY(-50%) scale(1.08);
}
.lbx-arrow.left  { left: -58px; }
.lbx-arrow.right { right: -58px; }
.lbx-name-txt {
    display: block;
    font-family: var(--kr); font-size: 14px; font-weight: 300;
    letter-spacing: .05em; color: rgba(253,250,247,.85);
    margin-bottom: 8px;
}
.lbx-counter {
    position: absolute; bottom: -58px; left: 50%; transform: translateX(-50%);
    font-family: var(--en); font-size: 12px; letter-spacing: .2em;
    color: rgba(253,250,247,.5); white-space: nowrap; text-align: center;
}

/* ── FLOATING ── */
.flt {
    position: fixed; right: 24px; bottom: 36px;
    display: flex; flex-direction: column; gap: 10px; z-index: 800;
}
.flt-btn {
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,.18); transition: transform .3s, box-shadow .3s;
}
.flt-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 26px rgba(0,0,0,.22); }
.flt-nv { background: #03C75A; }
.flt-tk { background: #00B900; }
.flt-ig { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.flt-btn svg { width: 20px; height: 20px; fill: #fff; }

/* ── FOOTER ── */
footer { background: var(--black); padding: 60px 0 36px; }
.ft-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.ft-logo { font-family: var(--en); font-size: 26px; font-weight: 300; letter-spacing: .16em; color: var(--light); display: block; margin-bottom: 12px; }
.ft-tag { font-size: 12px; font-weight: 200; letter-spacing: .1em; color: var(--main); margin-bottom: 22px; }
.ft-sns { display: flex; gap: 10px; }
.ft-sns a {
    width: 34px; height: 34px; border: 1px solid rgba(145,134,123,.28);
    display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.ft-sns a:hover { border-color: var(--main); background: rgba(145,134,123,.1); }
.ft-sns svg { width: 15px; height: 15px; fill: var(--mid); }
.ft-info { text-align: right; }
.ft-info p { font-size: 12px; font-weight: 200; color: var(--mid); line-height: 2.3; letter-spacing: .03em; }
.ft-copy {
    margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(145,134,123,.13);
    text-align: center;
}
.ft-copy p { font-family: var(--en); font-size: 11px; font-weight: 300; letter-spacing: .14em; color: rgba(145,134,123,.45); }

/* ── SCROLL PROGRESS ── */
#scroll-progress {
    position: fixed; top: 0; left: 0; z-index: 1002;
    height: 2px; width: 0%;
    background: var(--main);
    pointer-events: none;
}

/* ── INTRO LOADER ── */
#intro-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--black);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity .75s ease;
}
#intro-loader.il-out { opacity: 0; pointer-events: none; }
.il-wrap { text-align: center; }
.il-row { overflow: hidden; }
.il-row span {
    display: block;
    font-family: var(--en); font-size: clamp(50px, 8.5vw, 100px);
    font-weight: 300; letter-spacing: .24em; color: var(--white);
    transform: translateY(110%);
    animation: ilUp .8s cubic-bezier(.4,0,.2,1) .15s forwards;
}
.il-row.il-italic span {
    font-style: italic; color: var(--light);
    animation-delay: .35s;
}
@keyframes ilUp { to { transform: translateY(0); } }
.il-rule {
    width: 0; height: 1px; background: var(--mid);
    margin: 22px auto;
    animation: ilRule .65s ease .9s forwards;
}
@keyframes ilRule { to { width: 72px; } }
.il-sub {
    font-family: var(--kr); font-size: 11px; font-weight: 200;
    letter-spacing: .3em; color: var(--mid);
    opacity: 0; animation: ilFade .55s ease 1.3s forwards;
}
@keyframes ilFade { to { opacity: 1; } }

/* ── HERO WORD REVEAL ── */
.hero-word { display: block; overflow: hidden; }
.hero-word > span {
    display: block;
    transform: translateY(110%); opacity: 0;
    transition: transform 1s cubic-bezier(.4,0,.2,1), opacity .8s ease;
}
.hero-ready .hero-word:nth-child(1) > span { transform: translateY(0); opacity: 1; }
.hero-ready .hero-word:nth-child(2) > span {
    transform: translateY(0); opacity: 1; transition-delay: .2s;
}
.hero-sub, .hero-tagline, .hero-btns, .hero-scroll {
    opacity: 0; transform: translateY(16px);
    transition: opacity .7s ease, transform .7s ease;
}
.hero-ready .hero-sub    { opacity: .7;  transform: none; transition-delay: .38s; }
.hero-ready .hero-tagline{ opacity: .75; transform: none; transition-delay: .52s; }
.hero-ready .hero-btns   { opacity: 1;   transform: none; transition-delay: .66s; }
.hero-ready .hero-scroll { opacity: 1;   transform: none; transition-delay: .82s; }

/* ── CARD OVERLAY ── */
.port-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: rgba(26,18,16,.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .4s ease;
}
.port-card:hover .port-overlay,
.price-card:hover .port-overlay,
.gal-item:hover .port-overlay { opacity: 1; }
.port-ov-ring {
    width: 54px; height: 54px; border-radius: 50%;
    border: 1px solid rgba(253,250,247,.8);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 22px;
    transform: scale(.7);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.port-card:hover .port-ov-ring,
.price-card:hover .port-ov-ring,
.gal-item:hover .port-ov-ring { transform: scale(1); }

/* ── NAV ACTIVE ── */
#hd.on .hd-nav a.nav-active { color: var(--dark); position: relative; }
#hd.on .hd-nav a.nav-active::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--main);
}

/* ── MARQUEE ── */
.marquee-wrap {
    background: var(--dark);
    overflow: hidden; padding: 15px 0;
    border-top: 1px solid rgba(196,181,168,.08);
    border-bottom: 1px solid rgba(196,181,168,.08);
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-track {
    display: flex; width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.marquee-item {
    font-family: var(--en); font-size: 10px; font-weight: 300;
    letter-spacing: .28em; color: var(--mid);
    padding: 0 30px; white-space: nowrap; text-transform: uppercase;
}
.marquee-sep {
    color: var(--main); font-size: 8px;
    align-self: center; flex-shrink: 0;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── CUSTOM CURSOR ── */
#cursor-dot, #cursor-ring {
    position: fixed; top: 0; left: 0;
    border-radius: 50%; pointer-events: none;
    transition: opacity .3s; will-change: transform;
}
#cursor-dot {
    width: 7px; height: 7px;
    background: var(--main); z-index: 9999;
}
#cursor-ring {
    width: 38px; height: 38px;
    border: 1.5px solid rgba(145,134,123,.5);
    z-index: 9998;
    transition: opacity .3s, border-color .35s;
}
#cursor-ring.cursor-big { border-color: var(--main); }
@media (hover: hover) and (pointer: fine) { body, a, button { cursor: none; } }
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } }

/* ── SCROLL TO TOP ── */
#scroll-top {
    background: var(--dark); border: none;
    opacity: 0; pointer-events: none; transform: translateY(10px);
    transition: opacity .3s, transform .3s, background .3s, box-shadow .3s;
}
#scroll-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
#scroll-top:hover { background: var(--black); transform: translateY(-3px); box-shadow: 0 8px 26px rgba(0,0,0,.22); }
#scroll-top svg { fill: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .des-grid { grid-template-columns: 1fr; }
    .des-card { display: flex; gap: 28px; align-items: flex-start; }
    .des-photo { width: 200px; flex-shrink: 0; aspect-ratio: 2/3; margin-bottom: 0; }
}
@media (max-width: 768px) {
    #hd { padding: 16px 24px; }
    #hd.on { padding: 12px 24px; }
    .hd-nav { display: none; }
    .hd-ham { display: flex; }
    .wrap { padding: 0 24px; }
    .sec { padding: 68px 0; }
    .about-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(3,1fr); }
    .port-head { flex-direction: column; align-items: flex-start; gap: 20px; }
    .gal-grid { grid-template-columns: 1fr 1fr; }
    .gal-item:first-child { grid-column: span 2; }
    .gal-item:first-child img { height: 300px; }
    .gal-item:not(:first-child) img { height: 170px; }
    .loc-grid { grid-template-columns: 1fr; gap: 36px; }
    .des-card { flex-direction: column; }
    .des-photo { width: 100%; aspect-ratio: 3/4; }
    .ft-inner { flex-direction: column; }
    .ft-info { text-align: left; }
    .loc-btns { flex-wrap: nowrap; gap: 8px; }
    .loc-btns a { flex: 1; text-align: center; padding: 11px 8px; font-size: 11px; letter-spacing: .04em; }
    .port-tags { display: none; }
    .lbx-arrow.left  { left: 8px; }
    .lbx-arrow.right { right: 8px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 56px; }
    .hero-btns { flex-direction: column; }
    .stats { grid-template-columns: 1fr; }
    .gal-grid { grid-template-columns: 1fr; }
    .gal-item:first-child { grid-column: span 1; }
    .gal-item:first-child img { height: 260px; }
}
