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

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    /* background: #111; */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.phone {
    width: 390px;
    height: 844px;
    background: #0a0c07;
    border-radius: 50px;
    border: 2px solid #2a2a2a;
    box-shadow: 0 0 0 6px #111, 0 0 0 8px #252525, 0 40px 90px rgba(0, 0, 0, 0.75);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 126px;
    height: 36px;
    background: #111;
    border-radius: 0 0 22px 22px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.notch-bar {
    width: 46px;
    height: 5px;
    border-radius: 3px;
    background: #1e1e1e;
}

.notch-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #1e1e1e;
}

.status {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    z-index: 9998;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 26px 6px;
    pointer-events: none;
}

.status-t {
    font-size: 13px;
    font-weight: 500;
    color: rgba(245, 239, 224, 0.8);
    letter-spacing: .02em;
}

.status-r {
    font-size: 11px;
    color: rgba(245, 239, 224, 0.5);
    display: flex;
    gap: 4px;
    align-items: center;
}

.screen {
    position: absolute;
    inset: 0;
    border-radius: 48px;
    overflow: hidden;
    background: #0a0c07;
}

/* SPLASH */
#splash {
    position: absolute;
    inset: 0;
    z-index: 500;
    background: #0a0c07;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}

#splash.out {
    opacity: 0;
    pointer-events: none;
}

.steam-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.stm {
    position: absolute;
    bottom: 52%;
    left: 50%;
    width: 1.5px;
    border-radius: 2px;
    background: linear-gradient(to top, transparent, rgba(196, 129, 58, 0.2), transparent);
    animation: sUp var(--d) ease-in infinite var(--dl);
}

@keyframes sUp {
    0% {
        height: 0;
        opacity: 0;
        transform: translateX(var(--tx)) scaleX(1);
    }

    15% {
        opacity: .9;
    }

    85% {
        opacity: .2;
    }

    100% {
        height: 110px;
        opacity: 0;
        transform: translateX(calc(var(--tx)*2.5)) scaleX(2);
    }
}

.cup-svg {
    width: 52px;
    height: 45px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.splash-title {
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    font-weight: 400;
    color: #F5EFE0;
    text-align: center;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    margin-bottom: 4px;
}

.splash-title em {
    font-style: italic;
    color: #E8A84E;
}

.splash-sub {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(245, 239, 224, .32);
    margin-bottom: 34px;
    position: relative;
    z-index: 1;
}

.splash-btn {
    padding: 11px 30px;
    border-radius: 30px;
    border: 1px solid #C4813A;
    background: transparent;
    color: #E8A84E;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .13em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: background .2s;
}

.splash-btn:active {
    background: rgba(196, 129, 58, .14);
}

/* MAP */
#map {
    position: absolute;
    inset: 0;
    overflow: hidden;
    touch-action: none;
    cursor: grab;
    background: #f7b717;
}

#map.drag {
    cursor: grabbing;
}

#mt {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    will-change: transform;
}

#map-img {
    display: block;
    width: 2500px;
    height: 1010px;
    user-select: none;
    -webkit-user-drag: none;
    /* filter: sepia(0.25) brightness(0.5) saturate(1.3); */
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 2500px;
    height: 1010px;
    pointer-events: none;
}

.booth {
    position: absolute;
    border-radius: 5px;
    border: 1.5px solid rgba(196, 129, 58, 0);
    cursor: pointer;
    pointer-events: all;
    transition: border-color .15s, background .15s;
    background: rgba(245, 239, 224, 0);
}

.booth:hover {
    border-color: rgba(196, 129, 58, 0.75) !important;
    background: rgba(196, 129, 58, 0.12) !important;
}

.booth.visited {
    background: rgba(196, 129, 58, 0.09) !important;
    border-color: rgba(196, 129, 58, 0.38) !important;
}

.booth.liked {
    background: rgba(212, 168, 83, 0.2) !important;
    border-color: rgba(212, 168, 83, 0.65) !important;
}

.booth.passed {
    background: rgba(0, 0, 0, 0.28) !important;
    border-color: rgba(245, 239, 224, 0.07) !important;
}

.booth::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: transparent;
}

.booth.visited::after {
  background: rgba(60, 216, 38, 0.75);
  content: '✓';
  color: white;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 11px;
}

.booth.liked::after {
    background: #D4A853;
}

canvas {
    width: 100%;
}

#upins {
    position: absolute;
    top: 0;
    left: 0;
    width: 2500px;
    height: 1010px;
    pointer-events: none;
}

.upin {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .05em;
    pointer-events: none;
    animation: upulse 2.5s ease-in-out infinite;
}

@keyframes upulse {

    0%,
    100% {
        opacity: .85
    }

    50% {
        opacity: 1;
        transform: scale(1.06)
    }
}

/* TOP BAR */
#topbar {
    position: absolute;
    top: 44px;
    left: 78%;
    right: 0;
    z-index: 100;
    padding: 10px 13px 0;
    display: inline-block;
    /* gap: 8px; */
    pointer-events: none;
}

.ev-card {
    flex: 1;
    background: rgba(10, 12, 7, .9);
    border: 1px solid rgba(196, 129, 58, .2);
    border-radius: 14px;
    padding: 10px 13px;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.ev-name {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    color: #F5EFE0;
}

.ev-name em {
    font-style: italic;
    color: #E8A84E;
}

.ev-meta {
    font-size: 10px;
    font-weight: 300;
    color: rgba(245, 239, 224, .32);
    margin-top: 2px;
}

.prog-card {
    background: rgba(10, 12, 7, .59);
    border: 1px solid rgba(196, 129, 58, .2);
    border-radius: 14px;
    padding: 10px 12px;
    backdrop-filter: blur(10px);
    text-align: center;
    min-width: 56px;
    pointer-events: all;
    margin-bottom: 10px;
}

.prog-card svg {
    width: 16px;
    height: 16px;
}

.prog-n {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #E8A84E;
    line-height: 1;
    font-weight: bold;
}

.prog-n span {
    font-size: 9px;
    color: rgba(196, 162, 83, .53);
}

.prog-lbl {
    font-size: 8px;
    font-weight: 300;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(245, 239, 224, .58);
    margin-top: 2px;
}

.prog-bar {
    width: 100%;
    height: 4px;
    border: 1px solid rgba(196, 129, 58, .62);
    border-radius: 2px;
    margin-top: 5px;
    overflow: hidden;
}

.prog-fill {
    height: 100%;
    background: #C4813A;
    /* border-radius: 2px; */
    transition: width .4s;
}

/* UTIL / ZOOM / FABs */
#utils {
    position: absolute;
    top: 54px;
    left: 12px;
    z-index: 100;
    display: flex;
    /* flex-direction: column; */
    gap: 7px;
}

.ubtn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border-radius: 20px;
    background: rgba(10, 12, 7, .3);
    /* border: 1px solid rgba(196, 129, 58, .16); */
    color: rgba(245, 239, 224);
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all .15s;
    white-space: nowrap;
}

.ubtn.on {
    background: rgba(196, 129, 58, .45);
    border-color: rgba(196, 129, 58, .45);
    color: gray;
}

#zooms {
    position: absolute;
    right: 12px;
    bottom: 82px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.zbtn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(10, 12, 7, .9);
    border: 1px solid rgba(196, 129, 58, .16);
    color: rgba(245, 239, 224, .6);
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.zbtn:active {
    background: rgba(196, 129, 58, .12);
}

#fabs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 13px 26px;
    display: flex;
    gap: 9px;
}

.fab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(10, 12, 7, .92);
    border: 1px solid rgba(196, 129, 58, .2);
    color: rgba(245, 239, 224, .6);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all .15s;
}

.fab svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.fab-gold {
    /* background: rgba(196, 129, 58, .18); */
    border-color: rgba(196, 129, 58, .4);
    color: #E8A84E;
}

/* BOTTOM SHEET */
#sbg {
    position: absolute;
    inset: 0;
    z-index: 200;
    background: rgba(5, 6, 3, .65);
    backdrop-filter: blur(2px);
    display: none;
    align-items: flex-end;
}

#sbg.open {
    display: flex;
}

#sheet {
    width: 100%;
    background: #141810;
    border: 1px solid rgba(196, 129, 58, .15);
    border-bottom: none;
    border-radius: 22px 22px 0 0;
    padding: 0 0 30px;
    max-height: 86%;
    overflow-y: auto;
    animation: sup .26s cubic-bezier(.32, .72, 0, 1);
}

@keyframes sup {
    from {
        transform: translateY(100%)
    }

    to {
        transform: translateY(0)
    }
}

.sh-handle {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(245, 239, 224, .1);
    margin: 12px auto 15px;
}

.sh-head {
    padding: 0 17px 15px;
    border-bottom: 1px solid rgba(196, 129, 58, .1);
}

.sh-zone {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sh-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: #F5EFE0;
    line-height: 1.15;
    margin-bottom: 3px;
}

.sh-type {
    font-size: 11px;
    font-weight: 300;
    color: rgba(245, 239, 224, .38);
    letter-spacing: .04em;
}

.sh-close {
    float: right;
    margin-top: -32px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(245, 239, 224, .07);
    border: 1px solid rgba(245, 239, 224, .1);
    color: rgba(245, 239, 224, .4);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sh-body {
    padding: 15px 17px 0;
}

.sh-desc {
    font-size: 13px;
    font-weight: 300;
    color: rgba(245, 239, 224, .52);
    line-height: 1.65;
    margin-bottom: 15px;
}

.sh-vbtn {
    width: 100%;
    padding: 11px;
    border-radius: 12px;
    border: 1px solid rgba(196, 129, 58, .3);
    background: rgba(196, 129, 58, .1);
    color: #E8A84E;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 11px;
    letter-spacing: .03em;
    transition: all .15s;
}

.sh-vbtn.done {
    background: rgba(245, 239, 224, .03);
    border-color: rgba(245, 239, 224, .07);
    color: rgba(245, 239, 224, .25);
}

.sh-rates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.rbtn {
    padding: 10px;
    border-radius: 11px;
    border: 1px solid rgba(245, 239, 224, .1);
    background: rgba(245, 239, 224, .03);
    color: rgba(245, 239, 224, .48);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: all .15s;
}

.rbtn.liked {
    background: rgba(61, 31, 10, .6);
    border-color: rgba(212, 168, 83, .5);
    color: #D4A853;
}

.rbtn.passed {
    background: rgba(245, 239, 224, .03);
    border-color: rgba(245, 239, 224, .07);
    color: rgba(245, 239, 224, .2);
}

.rbtn-ic {
    font-size: 18px;
    line-height: 1;
}

/* TASTING */
.t-section {
    margin-bottom: 16px;
}

.t-head {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(245, 239, 224, .25);
    margin-bottom: 11px;
    display: block;
}

.t-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
}

.t-lbl {
    font-size: 12px;
    font-weight: 300;
    color: rgba(245, 239, 224, .48);
    width: 68px;
    flex-shrink: 0;
}

.t-pips {
    display: flex;
    gap: 5px;
    flex: 1;
}

.pip {
    flex: 1;
    height: 26px;
    border-radius: 5px;
    border: 1px solid rgba(245, 239, 224, .09);
    background: rgba(245, 239, 224, .02);
    cursor: pointer;
    transition: all .12s;
}

.pip:active {
    transform: scale(.92);
}

.pip.on {
    background: rgba(196, 129, 58, .32);
    border-color: rgba(196, 129, 58, .48);
}

.pip.top {
    background: rgba(212, 168, 83, .52);
    border-color: rgba(212, 168, 83, .7);
}

.t-val {
    font-size: 11px;
    font-weight: 400;
    color: #C4813A;
    width: 13px;
    text-align: right;
    flex-shrink: 0;
}

/* NOTES */
.n-lbl {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(245, 239, 224, .25);
    display: block;
    margin-bottom: 7px;
}

.n-ta {
    width: 100%;
    background: rgba(245, 239, 224, .03);
    border: 1px solid rgba(245, 239, 224, .08);
    border-radius: 10px;
    color: #F5EFE0;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    padding: 9px 11px;
    resize: none;
    min-height: 64px;
    line-height: 1.6;
    transition: border-color .15s;
}

.n-ta:focus {
    outline: none;
    border-color: rgba(196, 129, 58, .4);
}

.n-ta::placeholder {
    color: rgba(245, 239, 224, .17);
}

.save-btn {
    margin-top: 7px;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    background: rgba(196, 129, 58, .7);
    border: none;
    color: #0a0c07;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: .04em;
    transition: background .15s;
}

.save-btn:active {
    background: #C4813A;
}

.sh-stag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    letter-spacing: .04em;
    margin-bottom: 11px;
}

.sh-stag.liked {
    background: rgba(212, 168, 83, .12);
    color: #D4A853;
    border: 1px solid rgba(212, 168, 83, .24);
}

.sh-stag.visited {
    background: rgba(196, 129, 58, .1);
    color: #C4813A;
    border: 1px solid rgba(196, 129, 58, .2);
}

/* LIST SHEET */
#lbg {
    position: absolute;
    inset: 0;
    z-index: 200;
    background: rgba(5, 6, 3, .65);
    backdrop-filter: blur(2px);
    display: none;
    align-items: flex-end;
}

#lbg.open {
    display: flex;
}

#lsheet {
    width: 100%;
    background: #141810;
    border: 1px solid rgba(196, 129, 58, .15);
    border-bottom: none;
    border-radius: 22px 22px 0 0;
    padding: 0 0 30px;
    max-height: 80%;
    overflow-y: auto;
    animation: sup .26s cubic-bezier(.32, .72, 0, 1);
}

.ls-head {
    padding: 12px 17px 13px;
    border-bottom: 1px solid rgba(196, 129, 58, .1);
}

.ls-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: #F5EFE0;
}

.ls-sub {
    font-size: 11px;
    font-weight: 300;
    color: rgba(245, 239, 224, .28);
    margin-top: 2px;
}

.ls-x {
    float: right;
    margin-top: -22px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(245, 239, 224, .07);
    border: 1px solid rgba(245, 239, 224, .1);
    color: rgba(245, 239, 224, .4);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-sec {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(245, 239, 224, .2);
    padding: 11px 17px 5px;
}

.ls-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 17px;
    border-bottom: 1px solid rgba(245, 239, 224, .04);
    cursor: pointer;
}

.ls-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ls-bd {
    flex: 1;
    min-width: 0;
}

.ls-bn {
    font-size: 13px;
    font-weight: 400;
    color: #F5EFE0;
}

.ls-bt {
    font-size: 10px;
    font-weight: 300;
    color: rgba(245, 239, 224, .28);
    margin-top: 1px;
}

.ls-bscores {
    font-size: 10px;
    font-style: italic;
    color: rgba(196, 129, 58, .55);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ls-go {
    padding: 5px 11px;
    border-radius: 20px;
    background: rgba(196, 129, 58, .1);
    border: 1px solid rgba(196, 129, 58, .2);
    color: #C4813A;
    font-size: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.ls-empty {
    text-align: center;
    padding: 34px 17px;
    color: rgba(245, 239, 224, .18);
    font-size: 12px;
    font-style: italic;
}

/* BADGE */
#badge {
    position: absolute;
    top: -130px;
    left: 50%;
    transform: translateX(-50%);
    width: 255px;
    z-index: 600;
    background: #141810;
    border: 1px solid rgba(212, 168, 83, .4);
    border-radius: 16px;
    padding: 17px;
    text-align: center;
    transition: top .5s cubic-bezier(.34, 1.56, .64, 1);
    pointer-events: none;
}

#badge.show {
    top: 54px;
}

.bdg-ic {
    font-size: 28px;
    margin-bottom: 5px;
}

.bdg-h {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: #D4A853;
    margin-bottom: 4px;
}

.bdg-b {
    font-size: 11px;
    font-weight: 300;
    color: rgba(245, 239, 224, .42);
    line-height: 1.5;
}