/* =========================================================
   PINGVIN ice cream — design system
   Colors: #004E57 (teal) · #F77F00 (orange) · #000 · #FFF7EA (cream)
   ========================================================= */

:root {
    --teal: #004E57;
    --teal-deep: #003840;
    --teal-soft: #0a6c77;
    --orange: #F77F00;
    --orange-soft: #ff9722;
    --cream: #FFF7EA;
    --cream-soft: #FFFBF4;
    --ink: #0a1618;
    --muted: #5b6b6d;
    --line: rgba(0, 78, 87, 0.12);
    --shadow-sm: 0 4px 14px rgba(0, 55, 62, 0.08);
    --shadow-md: 0 12px 32px rgba(0, 55, 62, 0.12);
    --shadow-lg: 0 28px 60px rgba(0, 55, 62, 0.18);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 999px;
    --font-display: 'Fredoka', 'Nunito', system-ui, sans-serif;
    --font-body: 'Nunito', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--teal);
}

/* ===========================================================
   Top navigation
   =========================================================== */
.nav {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 247, 234, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--teal);
}

.nav__logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal);
    padding: 4px;
}

.nav__logo small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 2px;
}

.nav__links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav__links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--teal);
    padding: 8px 0;
    position: relative;
    transition: color .2s ease;
}

.nav__links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    border-radius: 3px;
    background: var(--orange);
    transition: all .25s ease;
    transform: translateX(-50%);
}

.nav__links a:hover { color: var(--orange); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
    background: var(--orange);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    transition: all .2s ease;
    box-shadow: 0 8px 20px rgba(247, 127, 0, 0.28);
}

.nav__cta:hover {
    background: var(--orange-soft);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(247, 127, 0, 0.38);
}

.nav__burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--teal);
    color: #fff;
    font-size: 22px;
    align-items: center;
    justify-content: center;
}

/* ===========================================================
   Hero
   =========================================================== */
.hero {
    position: relative;
    background: radial-gradient(ellipse at top left, #0a6c77 0%, var(--teal) 45%, var(--teal-deep) 100%);
    color: #fff;
    padding: 72px 0 120px;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/pattern-white.png');
    background-size: 420px;
    opacity: 0.06;
    z-index: -1;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(247, 127, 0, 0.18);
    border: 1px solid rgba(247, 127, 0, 0.4);
    color: var(--orange);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 76px);
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 span {
    display: inline-block;
    color: var(--orange);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 12px;
    background: rgba(247, 127, 0, 0.22);
    border-radius: 6px;
    z-index: -1;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 16px;
    transition: all .25s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 14px 32px rgba(247, 127, 0, 0.38);
}

.btn--primary:hover {
    background: var(--orange-soft);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(247, 127, 0, 0.48);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.24);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero__stats {
    display: flex;
    gap: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}

.hero__stat span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__visual-main {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero__visual-main img {
    width: 68%;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.hero__chip {
    position: absolute;
    background: #fff;
    color: var(--teal);
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 4s ease-in-out infinite;
}

.hero__chip--1 { top: 8%; left: -5%; animation-delay: .5s; }
.hero__chip--2 { bottom: 12%; right: -6%; animation-delay: 1.2s; }
.hero__chip--3 { bottom: -2%; left: 10%; animation-delay: 1.8s; }

/* ===========================================================
   Menu section
   =========================================================== */
.menu {
    padding: 100px 0 120px;
    position: relative;
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-head small {
    display: block;
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: clamp(34px, 4vw, 54px);
}

.section-head p {
    max-width: 540px;
    margin: 14px auto 0;
    color: var(--muted);
    font-size: 17px;
}

.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.category-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: #fff;
    color: var(--teal);
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 15px;
    transition: all .2s ease;
    box-shadow: var(--shadow-sm);
}

.category-tab:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

.category-tab.is-active {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
    box-shadow: 0 10px 24px rgba(0, 78, 87, 0.25);
}

.category-tab.is-active:hover {
    color: #fff;
}

.category-tab__icon {
    font-size: 18px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.menu-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(247, 127, 0, 0.3);
}

.menu-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #fef2e0, #ffe6c6);
}

.menu-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.menu-card:hover .menu-card__image img {
    transform: scale(1.08);
}

.menu-card__fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}

.menu-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--orange);
    color: #fff;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    box-shadow: 0 6px 14px rgba(247, 127, 0, 0.35);
}

.menu-card__body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.menu-card__title {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 600;
    color: var(--teal);
    line-height: 1.25;
}

.menu-card__desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    min-height: 40px;
}

.menu-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    margin-top: auto;
    border-top: 1px dashed var(--line);
}

.menu-card__weight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.menu-card__price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--orange);
}

.menu-card__price small {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    margin-left: 3px;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--muted);
}

.empty-state img {
    width: 120px;
    margin: 0 auto 20px;
    opacity: 0.5;
}

/* ===========================================================
   About / features
   =========================================================== */
.features {
    background: var(--cream-soft);
    padding: 100px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.feature {
    background: #fff;
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid var(--line);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature__icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(247, 127, 0, 0.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature p {
    color: var(--muted);
    font-size: 15px;
}

/* ===========================================================
   Contact / footer
   =========================================================== */
.contact {
    padding: 100px 0;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background: linear-gradient(135deg, var(--teal), var(--teal-deep));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px;
    position: relative;
    overflow: hidden;
}

.contact__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/pattern-white.png');
    background-size: 300px;
    opacity: 0.06;
    pointer-events: none;
}

.contact__inner > * { position: relative; z-index: 1; }

.contact small {
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 13px;
}

.contact h2 {
    color: #fff;
    font-size: clamp(30px, 3.5vw, 46px);
    margin: 10px 0 18px;
}

.contact > .container > .contact__inner > div > p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
}

.contact__list {
    list-style: none;
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
}

.contact__list li strong {
    display: block;
    font-size: 13px;
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.contact__list .ico {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(247, 127, 0, 0.15);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact__visual img {
    max-width: 320px;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.3));
}

footer {
    background: var(--teal-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 36px 0;
    text-align: center;
    font-size: 14px;
}

footer a { color: var(--orange); font-weight: 600; }

/* ===========================================================
   Mobile
   =========================================================== */
@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { display: none; }
    .hero { padding: 48px 0 80px; }
    .contact__inner { grid-template-columns: 1fr; padding: 40px 28px; }
    .contact__visual { display: none; }
    .nav__links { display: none; }
    .nav__burger { display: flex; }
    .nav__cta { display: none; }
    .hero__stats { gap: 20px; flex-wrap: wrap; }
}

@media (max-width: 560px) {
    .hero h1 { font-size: 40px; }
    .menu-grid { grid-template-columns: 1fr; }
    .hero__chip { display: none; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 6px; border: 3px solid var(--cream); }
::-webkit-scrollbar-thumb:hover { background: var(--teal-soft); }

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   TAPLINK landing page — bio link aggregator
   ============================================================ */

.taplink-body {
    background: var(--teal);
    min-height: 100svh;
    overflow: auto;
}

.taplink {
    min-height: 100svh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 32px 18px 60px;
    position: relative;
    isolation: isolate;
}

.taplink__bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at top left, #0a6c77 0%, var(--teal) 45%, var(--teal-deep) 100%);
    z-index: -2;
}

.taplink__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/pattern-white.png');
    background-size: 380px;
    opacity: 0.06;
}

.taplink__card {
    width: 100%;
    max-width: 480px;
    text-align: center;
    color: #fff;
    animation: tapFadeIn .6s ease;
}

@keyframes tapFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.taplink__avatar {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 12px auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taplink__avatar img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 3px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(12px);
    object-fit: contain;
}

.taplink__avatar-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--orange), transparent 55%, var(--orange));
    animation: ringSpin 6s linear infinite;
    filter: blur(6px);
    opacity: 0.6;
    z-index: 1;
}

@keyframes ringSpin {
    to { transform: rotate(360deg); }
}

.taplink__title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.taplink__subtitle {
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.taplink__bio {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.55;
    max-width: 360px;
    margin: 0 auto 32px;
}

.taplink__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.tp-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    color: #fff;
    transition: all .2s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.tp-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.12), transparent);
    transform: translateX(-100%);
    transition: transform .7s ease;
}

.tp-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.tp-btn:hover::before { transform: translateX(100%); }

.tp-btn--primary {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 14px 28px rgba(247, 127, 0, 0.38);
}

.tp-btn--primary:hover {
    background: var(--orange-soft);
    border-color: var(--orange-soft);
    box-shadow: 0 20px 36px rgba(247, 127, 0, 0.48);
}

.tp-btn__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.tp-btn--primary .tp-btn__icon { background: rgba(255, 255, 255, 0.22); }

.tp-btn__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.tp-btn__text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-display);
}

.tp-btn__text small {
    display: block;
    font-size: 12px;
    opacity: 0.72;
    margin-top: 2px;
}

.tp-btn__arrow {
    font-size: 20px;
    opacity: 0.7;
    transition: transform .2s ease;
}

.tp-btn:hover .tp-btn__arrow { transform: translateX(4px); opacity: 1; }

/* Socials */
.taplink__socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.tp-soc {
    --soc-color: var(--orange);
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    transition: all .2s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tp-soc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--soc-color);
    opacity: 0;
    transition: opacity .2s ease;
}

.tp-soc span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-soc svg {
    width: 22px;
    height: 22px;
}

.tp-soc:hover {
    transform: translateY(-4px) scale(1.06);
    border-color: var(--soc-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.tp-soc:hover::before { opacity: 0.35; }

.taplink__foot {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    letter-spacing: 0.04em;
}

/* Sheets (for locations + contacts) */
.sheet {
    position: fixed;
    inset: 0;
    background: rgba(0, 12, 14, 0.6);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    animation: sheetFade .2s ease;
}

.sheet.is-open { display: flex; }

@keyframes sheetFade { from { opacity: 0; } to { opacity: 1; } }

.sheet__card {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 28px 28px 22px 22px;
    padding: 24px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: sheetSlide .28s cubic-bezier(.2, .9, .3, 1.1);
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes sheetSlide {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

@media (min-width: 560px) {
    .sheet { align-items: center; }
    .sheet__card { border-radius: 24px; }
    @keyframes sheetSlide {
        from { transform: translateY(40px); opacity: 0; }
        to   { transform: translateY(0);    opacity: 1; }
    }
}

.sheet__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #f3f6f7;
    color: var(--muted);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    z-index: 2;
}

.sheet__close:hover { background: var(--danger, #d64545); color: #fff; }

.sheet__title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--teal);
    margin: 4px 0 18px;
    padding-right: 40px;
}

.sheet__body { display: flex; flex-direction: column; gap: 10px; }

.loc-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 18px;
    transition: all .2s ease;
}

.loc-card:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.loc-card__pin {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(247, 127, 0, 0.14);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.loc-card__body { flex: 1; min-width: 0; }

.loc-card__body strong {
    display: block;
    font-family: var(--font-display);
    color: var(--teal);
    font-size: 16px;
    margin-bottom: 2px;
}

.loc-card__body div {
    font-size: 14px;
    color: var(--ink);
}

.loc-card__body small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.loc-card__arrow {
    color: var(--muted);
    font-size: 20px;
    transition: transform .2s ease;
}

.loc-card:hover .loc-card__arrow {
    color: var(--orange);
    transform: translateX(4px);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--ink);
    transition: all .15s ease;
}

.contact-row:hover {
    background: #fef2e0;
    border-color: var(--orange);
}

.contact-row__ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(0, 78, 87, 0.08);
    color: var(--teal);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-row small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-row strong {
    display: block;
    font-family: var(--font-display);
    color: var(--teal);
    font-size: 16px;
}

.empty-small {
    padding: 30px 10px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 560px) {
    .taplink__title { font-size: 34px; }
    .tp-btn { padding: 14px 16px; }
    .tp-btn__icon { width: 40px; height: 40px; font-size: 20px; }
    .tp-btn__text strong { font-size: 15px; }
}
