/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── TOKENS ── */
:root {
    --black:   #0D0B09;
    --dark:    #161210;
    --dark2:   #1E1812;
    --amber:   #D4845A;
    --amber2:  #E8A87C;
    --gold:    #C8A96E;
    --white:   #FAFAF8;
    --off:     #F0EBE3;
    --muted:   #8A7A6E;
    --border:  rgba(255,255,255,0.07);
    --border-light: rgba(0,0,0,0.08);
    --radius:  18px;
    --radius-sm: 10px;
    --font:    'Space Grotesk', sans-serif;
    --serif:   'Cormorant Garamond', Georgia, serif;
    --ease:    cubic-bezier(0.22, 1, 0.36, 1);
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* ── PAW TRAIL ── */
.paw-print {
    position: absolute;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}
.paw-print.paw-visible { opacity: 0.13; }
@media (max-width: 900px) { .paw-print { display: none; } }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 3rem;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(13, 11, 9, 0.93);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
    padding: 0.9rem 3rem;
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--amber2);
    text-decoration: none;
    letter-spacing: 0.5px;
    margin-right: auto;
}

.nav-links { display: flex; list-style: none; gap: 2.5rem; }

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(250,250,248,0.7);
    text-decoration: none;
    transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.nav-active { color: var(--white); }

.nav-book {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--black);
    background: var(--amber2);
    text-decoration: none;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}

.nav-book:hover { background: var(--amber); transform: translateY(-1px); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.35s var(--ease), opacity 0.25s;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }

/* Mobile drawer */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 800;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
}

.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer a {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-style: italic;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s, color 0.2s;
}

.mobile-drawer a:hover { opacity: 1; color: var(--amber2); }

/* ── HOME HERO ── */
.home-hero {
    min-height: 100svh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('image/background.jpg') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 5rem 80px;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

/* Ambient warm glow */
.home-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 40%, rgba(212,132,90,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.home-hero-text { position: relative; z-index: 2; max-width: 760px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(250,250,248,0.75);
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border);
    padding: 0.38rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    flex-shrink: 0;
}

.home-hero-heading {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.home-hero-heading em { font-style: italic; color: var(--amber2); display: block; }

.home-hero-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(250,250,248,0.55);
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.home-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual (right side) */
.home-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
}

.home-hero-frame {
    position: relative;
    width: 100%;
    height: 460px;
    border-radius: 24px 24px 80px 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
}

.home-hero-frame img { transition: transform 8s ease; }
.home-hero-frame:hover img { transform: scale(1.04); }

.home-hero-frame-tag {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: rgba(13,11,9,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 0.45rem 1rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(250,250,248,0.8);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.home-hero-pill {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.9rem 1.8rem;
    width: fit-content;
}

.hstat { text-align: center; }

.hstat-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hstat-label {
    font-size: 0.7rem;
    color: rgba(250,250,248,0.5);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.hstat-divider {
    width: 1px;
    height: 2.5rem;
    background: var(--border);
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--amber2);
    color: var(--black);
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-primary:hover {
    background: var(--amber);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212,132,90,0.35);
}

.btn-primary.full { width: 100%; justify-content: center; font-size: 0.95rem; padding: 1rem; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(250,250,248,0.75);
    text-decoration: none;
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.05);
}

.btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(250,250,248,0.75);
    text-decoration: none;
    padding: 0.8rem 1.4rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.btn-ghost-dark:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
}

/* ── MARQUEE TICKER ── */
.ticker {
    background: var(--amber2);
    overflow: hidden;
    padding: 0.75rem 0;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    gap: 2rem;
    animation: marquee 28s linear infinite;
}

.ticker-track span {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--black);
    text-transform: uppercase;
}

.ticker-track .dot { color: var(--dark); opacity: 0.4; }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── HOW IT WORKS ── */
.hiw-section {
    padding: 110px 3rem;
    background: var(--white);
}

.hiw-inner { max-width: 1200px; margin: 0 auto; }

.hiw-header {
    max-width: 560px;
    margin-bottom: 4rem;
}

.hiw-intro {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
    margin-top: 1rem;
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
    display: block;
}

.eyebrow.light { color: var(--amber2); }

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--amber); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--amber2); }

.hiw-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hiw-card {
    background: var(--off);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid transparent;
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.hiw-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(212,132,90,0.15);
}

.hiw-card.hiw-featured {
    background: var(--black);
    color: var(--white);
}

.hiw-card.hiw-featured:hover { border-color: rgba(232,168,124,0.3); }

.hiw-icon-wrap {
    width: 54px; height: 54px;
    background: rgba(212,132,90,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hiw-featured .hiw-icon-wrap {
    background: rgba(232,168,124,0.15);
}

.hiw-card h3 {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.hiw-featured h3 { color: var(--white); }

.hiw-card p {
    font-size: 0.92rem;
    line-height: 1.72;
    color: var(--muted);
    flex: 1;
}

.hiw-featured p { color: rgba(250,250,248,0.55); }

.hiw-link {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--amber);
    text-decoration: none;
    transition: color 0.25s;
    margin-top: auto;
}

.hiw-link:hover { color: var(--amber2); }
.hiw-featured .hiw-link { color: var(--amber2); }
.hiw-featured .hiw-link:hover { color: var(--amber); }

/* ── ABOUT / STORY ── */
.about {
    padding: 120px 3rem;
    background: var(--off);
}

.about-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.about-left p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 1rem;
}

.about-left .btn-primary { margin-top: 1rem; }

/* Stat bento */
.stat-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sb-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.sb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}

.sb-card.sb-large { grid-column: 1 / -1; flex-direction: row; align-items: center; flex-wrap: wrap; gap: 1rem; }
.sb-card.sb-accent { background: var(--black); }
.sb-card.sb-accent .sb-num, .sb-card.sb-accent .sb-label { color: var(--amber2); }

.sb-num {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.sb-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
}

.sb-note {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
    margin-top: 0.25rem;
}

/* ── DONATE ── */
.donate-section {
    background: var(--dark);
    padding: 100px 3rem;
}

.donate-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.donate-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(250,250,248,0.55);
    margin-bottom: 2rem;
}

.donate-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.donate-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: rgba(250,250,248,0.7);
}

.dbullet-icon { font-size: 1.1rem; }

.donate-footnote {
    font-size: 0.78rem !important;
    color: rgba(250,250,248,0.3) !important;
    margin-bottom: 0 !important;
}

/* Donate card */
.donate-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.donate-card h3 {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.donate-sub {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
    line-height: 1.55;
}

.donate-amounts {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.donate-btn {
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--black);
    background: var(--off);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 0.55rem 1.25rem;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.donate-btn:hover { border-color: var(--amber); }
.donate-btn.active { background: var(--amber2); border-color: var(--amber2); }
.donate-btn.custom { background: none; border-color: rgba(0,0,0,0.15); }
.donate-btn.custom.active { background: var(--amber2); border-color: var(--amber2); }

.donate-custom-wrap {
    margin-top: 0.75rem;
}

.donate-custom-wrap label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.donate-custom-input {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--off);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0 1rem;
    transition: border-color 0.25s;
}

.donate-custom-input:focus-within { border-color: var(--amber); }

.donate-custom-input span {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--muted);
}

.donate-custom-input input {
    flex: 1;
    font-family: var(--font);
    font-size: 0.92rem;
    color: var(--black);
    background: none;
    border: none;
    outline: none;
    padding: 0.85rem 0;
}

.donate-note {
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
    margin-top: 1rem;
}

/* ── CONTACT ── */
.contact-section { background: var(--dark); position: relative; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 680px;
}

.contact-left {
    padding: 100px 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left .section-title { margin-bottom: 3rem; }

.info-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.info-block:last-child { border: none; margin-bottom: 0; }

.info-block h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amber2);
    margin-bottom: 0.5rem;
}

.info-block p {
    font-size: 0.95rem;
    color: rgba(250,250,248,0.6);
    line-height: 1.7;
}

.contact-right {
    padding: 80px 4rem;
    background: var(--white);
    display: flex;
    align-items: center;
}

/* Booking form */
.booking-form { width: 100%; }

.booking-form h3 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.field label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--muted);
}

.field input,
.field textarea,
.field select {
    font-family: var(--font);
    font-size: 0.92rem;
    color: var(--black);
    background: var(--off);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
    width: 100%;
    appearance: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--amber);
    background: var(--white);
}

.field textarea { height: 110px; resize: none; }

/* ── FOOTER ── */
.footer {
    background: var(--black);
    padding: 60px 3rem 0;
}

.footer-top {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--amber2);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand p { font-size: 0.85rem; color: rgba(250,250,248,0.4); line-height: 1.8; }
.tagline { font-style: italic; opacity: 0.5; }

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.footer-nav a {
    font-size: 0.88rem;
    color: rgba(250,250,248,0.45);
    text-decoration: none;
    transition: color 0.25s;
}

.footer-nav a:hover { color: var(--white); }

.footer-newsletter p {
    font-size: 0.82rem;
    color: rgba(250,250,248,0.45);
    margin-bottom: 0.75rem;
}

.nl-row { display: flex; gap: 0.5rem; }

.nl-row input {
    flex: 1;
    font-family: var(--font);
    font-size: 0.85rem;
    color: var(--white);
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.65rem 1rem;
    outline: none;
    transition: border-color 0.25s;
}

.nl-row input::placeholder { color: rgba(250,250,248,0.25); }
.nl-row input:focus { border-color: var(--amber2); }

.nl-row button {
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--black);
    background: var(--amber2);
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.65rem 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.nl-row button:hover { background: var(--amber); }

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(250,250,248,0.25); }

/* ── MENU PAGE ── */
.menu-page-hero {
    background: var(--dark);
    padding: 140px 5rem 60px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.menu-hero-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-page-hero-inner {
    flex: 1;
    max-width: 640px;
}

.menu-hero-cat-img {
    width: auto;
    height: 340px;
    object-fit: contain;
    flex-shrink: 0;
}

.menu-page-title {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
}

.menu-page-title em { font-style: italic; color: var(--amber2); }

.menu-page-sub {
    font-size: 1rem;
    line-height: 1.72;
    color: rgba(250,250,248,0.5);
    max-width: 480px;
}

.menu-page-hero-cats {
    display: flex;
    align-items: flex-end;
    gap: -20px;
}

.menu-page-hero-cats img {
    width: 130px;
    height: 170px;
    border-radius: 16px 16px 0 0;
    object-fit: cover;
    object-position: top;
    box-shadow: -8px 0 24px rgba(0,0,0,0.4);
    border: 1px solid var(--border);
}

.menu-page-hero-cats img:nth-child(2) { width: 150px; height: 200px; position: relative; z-index: 1; }
.menu-page-hero-cats img:nth-child(1),
.menu-page-hero-cats img:nth-child(3) { opacity: 0.7; }

/* Tabs - menu page */
.menu-tabs-sticky {
    position: relative;
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    padding: 1rem 3rem;
}

.menu-tabs-inner { max-width: 1240px; margin: 0 auto; }

.menu-tabs {
    display: inline-flex;
    gap: 0.35rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.3rem;
}

.menu-tab {
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: rgba(250,250,248,0.5);
    background: none;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.3rem;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    white-space: nowrap;
}

.menu-tab:hover { color: var(--white); }
.menu-tab.active { background: var(--amber2); color: var(--black); }

/* Menu page panels */
.menu-page-body { background: var(--dark); }

.menu-page-panels {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 3rem 80px;
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-category-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.menu-category-header h2 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.menu-category-header p {
    font-size: 0.88rem;
    color: rgba(250,250,248,0.4);
    line-height: 1.6;
}

/* Menu list */
.menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.menu-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.25s ease, box-shadow 0.25s ease;
    border-radius: 8px;
}

.menu-item:hover {
    background: rgba(212,132,90,0.07);
    box-shadow: 0 0 24px rgba(212,132,90,0.18), inset 0 0 16px rgba(212,132,90,0.06);
}

.menu-item:hover .mi-info h4 {
    color: var(--amber2);
    text-shadow: 0 0 14px rgba(232,168,124,0.45);
}

.mi-info h4 { transition: color 0.25s ease, text-shadow 0.25s ease; }

.menu-item:nth-child(odd)  { padding-right: 3rem; border-right: 1px solid var(--border); }
.menu-item:nth-child(even) { padding-left: 3rem; }
.menu-list .menu-item:nth-last-child(-n+2) { border-bottom: none; }

.menu-item.special { border-left: 2px solid rgba(212,132,90,0.5); padding-left: 1rem; margin-left: -1rem; }
.menu-item.special:nth-child(even) { padding-left: calc(3rem + 1rem - 2px); margin-left: 0; border-left: 2px solid rgba(212,132,90,0.5); }

.mi-info { flex: 1; }

.mi-info h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.mi-info p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(250,250,248,0.4);
}

.mi-price {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--amber2);
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: 0.1rem;
}

.mi-tag {
    display: inline-block;
    font-family: var(--font);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.18rem 0.55rem;
    border-radius: 50px;
    background: rgba(232,168,124,0.15);
    color: var(--amber2);
    border: 1px solid rgba(232,168,124,0.25);
}

.mi-tag.vegan  { background: rgba(74,222,128,0.1);  color: #4ade80; border-color: rgba(74,222,128,0.2); }
.mi-tag.chef   { background: rgba(251,191,36,0.1);  color: #fbbf24; border-color: rgba(251,191,36,0.2); }
.mi-tag.new    { background: rgba(167,139,250,0.1); color: #a78bfa; border-color: rgba(167,139,250,0.2); }

.specials-note {
    font-size: 0.88rem;
    color: rgba(250,250,248,0.4);
    font-style: italic;
    margin-bottom: 1.75rem;
}

/* Menu CTA section */
.menu-cta-section {
    background: var(--off);
    padding: 70px 3rem;
}

.menu-cta-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.menu-cta-inner h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.4rem;
}

.menu-cta-inner p {
    font-size: 0.9rem;
    color: var(--muted);
}

.menu-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── ADOPT PAGE ── */

/* Hero with slideshow */
.adopt-hero {
    position: relative;
    min-height: 70vh;
    background: var(--dark);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.adopt-hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-slide.active { opacity: 1; }

.adopt-hero-slideshow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,11,9,0.9) 0%, rgba(13,11,9,0.4) 60%, rgba(13,11,9,0.2) 100%);
    z-index: 2;
}

.adopt-hero-inner {
    position: relative;
    z-index: 3;
    padding: 4rem 3rem 4rem;
    max-width: 700px;
}

.adopt-hero-title {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
}

.adopt-hero-title em { font-style: italic; color: var(--amber2); }

.adopt-hero-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(250,250,248,0.6);
    max-width: 500px;
    margin-bottom: 2rem;
}

/* Filter bar */
.adopt-filter-bar {
    background: var(--dark2);
    padding: 1.25rem 3rem;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.adopt-filter-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(250,250,248,0.3);
    margin-right: 0.25rem;
}

.filter-btn {
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(250,250,248,0.5);
    background: none;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.45rem 1.2rem;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.filter-btn.active { background: var(--amber2); color: var(--black); border-color: var(--amber2); }

/* Cats grid */
.adopt-grid-section {
    background: var(--off);
    padding: 60px 3rem 80px;
}

.adopt-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.adopt-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.adopt-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}

.adopt-card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--off);
}

.adopt-card-img img { transition: transform 0.6s var(--ease); object-fit: cover; object-position: center top; width: 100%; height: 100%; }
.adopt-card:hover .adopt-card-img img { transform: scale(1.07); }

.adopt-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.28rem 0.75rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.adopt-status.available {
    background: rgba(74,222,128,0.2);
    color: #16a34a;
    border: 1px solid rgba(74,222,128,0.35);
}

.adopt-status.pending {
    background: rgba(251,191,36,0.2);
    color: #b45309;
    border: 1px solid rgba(251,191,36,0.4);
}

.adopt-status.adopted {
    background: rgba(148,163,184,0.2);
    color: #64748b;
    border: 1px solid rgba(148,163,184,0.3);
}

.adopt-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.adopt-card-body h3 {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--black);
}

.cat-meta {
    font-size: 0.77rem;
    font-weight: 600;
    color: var(--amber);
    letter-spacing: 0.3px;
}

.cat-desc {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--muted);
    flex: 1;
}

.btn-adopt {
    display: inline-flex;
    justify-content: center;
    margin-top: 0.75rem;
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--black);
    background: var(--amber2);
    text-decoration: none;
    padding: 0.65rem 1.2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
}

.btn-adopt:hover { background: var(--amber); transform: translateY(-1px); }

.btn-adopt.disabled {
    background: var(--off);
    color: var(--muted);
    cursor: not-allowed;
    transform: none;
}

/* Adoption form section */
.adopt-form-section { background: var(--dark); }

.adopt-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 700px;
}

.adopt-form-left {
    padding: 100px 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.adopt-form-left .section-title { margin-bottom: 3rem; }

.process-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.process-step:last-child { border: none; margin-bottom: 0; }

.step-num {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--amber2);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.65;
}

.process-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.process-step p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(250,250,248,0.42);
}

.adopt-form-right {
    padding: 80px 4rem;
    background: var(--white);
    display: flex;
    align-items: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .home-hero { grid-template-columns: 1fr; padding: 120px 3rem 80px; min-height: auto; }
    .home-hero-visual { display: none; }
    .hiw-cards { grid-template-columns: 1fr; gap: 1rem; }
    .donate-inner { grid-template-columns: 1fr; gap: 3rem; }
    .menu-list { grid-template-columns: 1fr; }
    .menu-item:nth-child(odd)  { padding-right: 0; border-right: none; }
    .menu-item:nth-child(even) { padding-left: 0; }
    .menu-list .menu-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
    .menu-list .menu-item:last-child { border-bottom: none; }
    .menu-item.special { padding-left: 1rem; margin-left: -1rem; }
    .menu-item.special:nth-child(even) { padding-left: 1rem; }
    .menu-page-hero { grid-template-columns: 1fr; }
    .menu-page-hero-cats { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-left { padding: 60px 3rem; }
    .contact-right { padding: 60px 3rem; }
    .adopt-grid { grid-template-columns: 1fr 1fr; }
    .adopt-form-grid { grid-template-columns: 1fr; }
    .adopt-form-left { padding: 60px 3rem; }
    .adopt-form-right { padding: 60px 3rem; }
}

@media (max-width: 900px) {
    .navbar { padding: 1.1rem 1.75rem; }
    .navbar.scrolled { padding: 0.85rem 1.75rem; }
    .nav-links, .nav-book { display: none; }
    .hamburger { display: flex; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .menu-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
    .home-hero { padding: 110px 1.75rem 70px; }
    .hiw-section { padding: 70px 1.75rem; }
    .about { padding: 70px 1.75rem; }
    .donate-section { padding: 70px 1.75rem; }
    .menu-tabs { flex-wrap: wrap; }
    .menu-tabs-sticky { padding: 0.9rem 1.75rem; }
    .menu-hero-row { flex-direction: column; gap: 1.5rem; }
    .menu-hero-cat-img { height: 200px; }
    .menu-page-panels { padding: 40px 1.75rem 60px; }
    .menu-page-hero { padding: 120px 1.75rem 0; }
    .menu-cta-section { padding: 50px 1.75rem; }
    .adopt-hero-inner { padding: 3rem 1.75rem; }
    .adopt-filter-bar { padding: 1rem 1.75rem; }
    .adopt-grid-section { padding: 40px 1.75rem 60px; }
    .adopt-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-left { padding: 60px 1.75rem; }
    .contact-right { padding: 50px 1.75rem; }
    .footer { padding: 50px 1.75rem 0; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .stat-bento { grid-template-columns: 1fr; }
    .sb-card.sb-large { grid-column: auto; }
    .adopt-form-left { padding: 60px 1.75rem; }
    .adopt-form-right { padding: 50px 1.75rem; }
    .donate-card { padding: 2rem 1.5rem; }
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS MARQUEE
   ══════════════════════════════════════════════════ */

.testimonials-section {
    padding: 80px 0 90px;
    background: var(--white);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    padding: 0 3rem 3rem;
}

.testimonials-desc {
    font-size: 1rem;
    color: var(--muted);
    max-width: 500px;
    margin: 0.75rem auto 0;
    line-height: 1.65;
}

.testimonials-track-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0.5rem 0;
}

.testimonials-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: testimonialScroll 44s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes testimonialScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Card ── */
.t-card {
    flex-shrink: 0;
    width: 300px;
    background: linear-gradient(to bottom, rgba(212,132,90,0.08), rgba(212,132,90,0.02));
    border-top: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: background 0.3s;
}

.t-card:hover {
    background: linear-gradient(to bottom, rgba(212,132,90,0.14), rgba(212,132,90,0.05));
}

.t-card-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.t-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
}

.t-handle {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.1rem;
}

.t-stars {
    color: var(--amber);
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: 0.1rem;
}

.t-text {
    font-size: 0.875rem;
    color: #4a3f35;
    line-height: 1.7;
}

/* Gradient edge fades */
.t-fade-left,
.t-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 180px;
    pointer-events: none;
    z-index: 1;
}

.t-fade-left  { left: 0;  background: linear-gradient(to right, var(--white), transparent); }
.t-fade-right { right: 0; background: linear-gradient(to left,  var(--white), transparent); }

/* ══════════════════════════════════════════════════
   3D CAT SLIDER (Adopt page hero)
   ══════════════════════════════════════════════════ */

@keyframes adoptSliderRun {
    from { transform: perspective(1000px) rotateX(-16deg) rotateY(0deg); }
    to   { transform: perspective(1000px) rotateX(-16deg) rotateY(360deg); }
}

.adopt-slider-banner {
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: hidden;
    position: relative;
    background: var(--dark);
}

.adopt-slider-banner .adopt-slider {
    position: absolute;
    width: 200px;
    height: 250px;
    top: 10%;
    left: calc(50% - 100px);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: adoptSliderRun 20s linear infinite;
    z-index: 2;
}

.adopt-slider-banner .adopt-slider .item {
    position: absolute;
    inset: 0;
    transform:
        rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(550px);
}

.adopt-slider-banner .adopt-slider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.adopt-slider-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1400px, 100%);
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    pointer-events: none;
}

.adopt-slider-content h1 {
    font-family: var(--serif);
    font-size: clamp(5rem, 16vw, 14rem);
    line-height: 1;
    position: relative;
    color: var(--dark2);
    pointer-events: none;
    user-select: none;
}

/* Outlined layer sits in front of the spinning cards */
.adopt-slider-content h1::after {
    position: absolute;
    inset: 0;
    content: attr(data-content);
    z-index: 2;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.75);
    color: transparent;
}

.adopt-slider-sub {
    font-size: 1rem;
    color: rgba(250, 250, 248, 0.6);
    margin-top: 0.5rem;
    max-width: 420px;
}

.adopt-slider-cta {
    pointer-events: auto;
    margin-top: 1.5rem;
}

@media (max-width: 680px) {
    .adopt-slider-banner { height: 80vh; }
    .adopt-slider-banner .adopt-slider { top: 5%; }
}

/* ══════════════════════════════════════════════════
   ANIME FLOATING NAVBAR + CAT MASCOT
   ══════════════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes acm-float {
    0%, 100% { transform: translateX(-50%) translateY(0);    }
    50%      { transform: translateX(-50%) translateY(-5px); }
}

@keyframes acm-glow {
    0%, 100% { opacity: 0.25; transform: scale(1);    }
    50%      { opacity: 0.50; transform: scale(1.04); }
}

@keyframes acm-shine {
    0%   { transform: translateX(-200%); }
    50%  { transform: translateX(200%);  }
    100% { transform: translateX(-200%); }
}

@keyframes acm-blink {
    0%, 88%, 100% { transform: scaleY(1);    }
    93%           { transform: scaleY(0.07); }
}

@keyframes acm-headwobble {
    0%   { transform: rotate(0deg)  scale(1);    }
    25%  { transform: rotate(-6deg) scale(1.06); }
    75%  { transform: rotate(6deg)  scale(1.06); }
    100% { transform: rotate(0deg)  scale(1);    }
}

/* ── Outer wrapper — absolutely positioned inside each hero ── */
.anime-navbar-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1.25rem 3rem;
    pointer-events: none;
}

/* ── Inner (relative parent for the absolute mascot) ── */
.anime-navbar-inner {
    position: relative;
    pointer-events: auto;
}

/* ── Frosted pill ── */
.anime-pill {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0.45rem;
    border-radius: 9999px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.40);
}

/* ── Pill items ── */
.anime-pill-item {
    position: relative;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 9999px;
    transition: color 0.3s;
    white-space: nowrap;
    overflow: hidden;
    isolation: isolate;
}

.anime-pill-item:hover {
    color: rgba(255, 255, 255, 0.90);
    background: rgba(255, 255, 255, 0.06);
}

.anime-pill-item.acm-active {
    color: #fff;
}

/* active background glow */
.anime-pill-item.acm-active::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: rgba(212, 132, 90, 0.22);
    animation: acm-glow 2.2s ease-in-out infinite;
    z-index: -1;
}

/* active shine sweep */
.anime-pill-item.acm-active::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: linear-gradient(90deg, transparent, rgba(212, 132, 90, 0.28), transparent);
    animation: acm-shine 3s ease-in-out infinite;
    z-index: -1;
}

/* ════════════════════════════════════════════
   CAT MASCOT
   ════════════════════════════════════════════ */
.acm-mascot {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;                                  /* overridden by JS */
    transform: translateX(-50%) translateY(0);
    pointer-events: none;
    animation: acm-float 2.4s ease-in-out infinite;
    transition: left 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

/* ── Head circle ── */
.acm-head {
    position: relative;
    width: 44px;
    height: 44px;
    background: #F4882A;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.20);
    overflow: visible;         /* let ears & whiskers bleed out */
}

/* ── Ears (triangle via clip-path) ── */
.acm-ear {
    position: absolute;
    top: -13px;
    width: 16px;
    height: 20px;
    background: #F4882A;
    clip-path: polygon(50% 0%, 5% 100%, 95% 100%);
    filter: drop-shadow(0 -1px 2px rgba(0,0,0,0.10));
}

.acm-ear-l { left:  1px; transform: rotate(-14deg); transform-origin: bottom center; }
.acm-ear-r { right: 1px; transform: rotate( 14deg); transform-origin: bottom center; }

/* inner ear (pink) */
.acm-ear-in {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 11px;
    background: #ffb3c6;
    clip-path: polygon(50% 8%, 5% 100%, 95% 100%);
}

/* ── Eyes ── */
.acm-eye {
    position: absolute;
    top: 38%;
    width: 7px;
    height: 7px;
    background: #1a1a1a;
    border-radius: 50%;
    animation: acm-blink 5s ease-in-out infinite;
    transform-origin: center center;
}

.acm-eye-l { left: 22%; }
.acm-eye-r { right: 22%; }

/* eye shine */
.acm-eye::after {
    content: '';
    position: absolute;
    width: 2.5px;
    height: 2.5px;
    background: #fff;
    border-radius: 50%;
    top: 1px;
    left: 1px;
}

/* ── Blush ── */
.acm-blush {
    position: absolute;
    top: 56%;
    width: 10px;
    height: 5px;
    background: rgba(255, 110, 110, 0.32);
    border-radius: 50%;
}

.acm-blush-l { left:  7%; }
.acm-blush-r { right: 7%; }

/* ── Nose (tiny inverted triangle) ── */
.acm-nose {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left:  4px solid transparent;
    border-right: 4px solid transparent;
    border-top:   5px solid #ffb3c6;
}

/* ── Whiskers ── */
.acm-whisker {
    position: absolute;
    height: 1.5px;
    width: 17px;
    background: rgba(30, 18, 8, 0.28);
    border-radius: 1px;
}

/* left side */
.acm-wh-l1 { left: -10px; top: 52%; transform: rotate(-12deg); }
.acm-wh-l2 { left: -10px; top: 62%; transform: rotate( 10deg); }

/* right side */
.acm-wh-r1 { right: -10px; top: 52%; transform: rotate( 12deg); }
.acm-wh-r2 { right: -10px; top: 62%; transform: rotate(-10deg); }

/* ── Pointer diamond (connecting head to pill above) ── */
.acm-pointer {
    width: 12px;
    height: 12px;
    background: #F4882A;
    transform: rotate(45deg);
    margin: 0 auto -6px;
    border-radius: 2px;
    box-shadow: -2px -2px 6px rgba(0, 0, 0, 0.08);
}

/* ── Hover state: head wobble + faster blink ── */
.anime-navbar-inner.is-hovering .acm-head {
    animation: acm-headwobble 0.5s ease-in-out;
}

.anime-navbar-inner.is-hovering .acm-eye {
    animation: acm-blink 0.35s ease-in-out 2;
}

/* ── Responsive: compress pill on small screens ── */
@media (max-width: 520px) {
    .anime-pill-item {
        padding: 0.55rem 0.9rem;
        font-size: 0.78rem;
    }
    .anime-navbar-wrap { padding: 0.9rem 1.5rem; }
}
