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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    color: #1a1a1a;
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

/* Improve tap highlighting on mobile */
a, button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

/* Paw cursor on interactive elements */
a, button, .order-button, .map-link {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ctext y='18' font-size='18'%3E🐾%3C/text%3E%3C/svg%3E") 12 12, pointer;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1.5rem 2rem;
}

nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #888;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    position: relative;
}

.hero-logo {
    max-width: 420px;
    width: 90%;
    height: auto;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: rotate(-2deg) scale(1.02);
    animation: tailwag 0.3s ease-in-out 2;
}

@keyframes tailwag {
    0%, 100% { transform: rotate(-2deg) scale(1.02); }
    50% { transform: rotate(2deg) scale(1.02); }
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #555;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
}

.scroll-cue {
    position: absolute;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #999;
    animation: float 2s ease-in-out infinite;
}

.scroll-cue span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 400;
}

.scroll-cue svg {
    width: 12px;
    height: auto;
}

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

/* Section Styles */
section {
    padding: 6rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

h2 {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 3.5rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #666;
}

/* Menu Section */
#menu {
    padding: 7rem 2rem;
    border-top: 1px solid #e5e5e5;
    max-width: 800px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    max-width: 650px;
    margin: 0 auto;
}

.menu-category {
    margin-bottom: 2.5rem;
}

.menu-category h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.menu-subcategory {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #888;
    font-family: 'Inter', sans-serif;
}

.menu-category ul {
    list-style: none;
}

.menu-category li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    font-weight: 300;
    color: #333;
}

.badge {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    vertical-align: middle;
    margin-left: 0.5rem;
    color: #aaa;
    font-family: 'Inter', sans-serif;
}

.item-note {
    font-size: 0.8rem;
    color: #888;
    font-weight: 300;
}

.treats-note {
    text-align: center;
    font-style: italic;
    margin-top: 5rem;
    font-size: 0.9rem;
    color: #888;
    font-family: 'Libre Baskerville', serif;
}

/* Order Section */
#order {
    text-align: center;
    padding: 7rem 2rem;
    border-top: 1px solid #e5e5e5;
}

.order-subtitle {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: #555;
}

.order-button {
    display: inline-block;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid #1a1a1a;
    transition: all 0.2s;
}

.order-button:hover {
    background: #1a1a1a;
    color: #fff;
}

.order-number {
    margin-top: 2rem;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #888;
}

.order-note {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 300;
    color: #aaa;
}

/* Location Section */
#location {
    text-align: center;
    padding: 7rem 2rem;
    border-top: 1px solid #e5e5e5;
}

address {
    font-style: normal;
    font-size: 1rem;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 2.5rem;
    color: #333;
}

.map-link {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid #1a1a1a;
    padding: 1rem 2.5rem;
    transition: all 0.2s;
}

.map-link:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Founder Section */
#founder {
    padding: 7rem 2rem;
    border-top: 1px solid #e5e5e5;
    max-width: 900px;
}

.founder-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 750px;
    margin: 0 auto;
}

.founder-image {
    position: relative;
    text-align: center;
}

.founder-image img {
    width: 100%;
    max-width: 280px;
    border-radius: 4px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.founder-image:hover img {
    filter: grayscale(0%);
}

.founder-badge {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 2px;
}

.founder-bio h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.founder-title {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.founder-story {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.founder-credentials {
    list-style: none;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.founder-credentials li {
    font-size: 0.85rem;
    color: #666;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.founder-credentials li::before {
    content: "🐾";
    position: absolute;
    left: 0;
    font-size: 0.7rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 2rem;
    border-top: 1px solid #e5e5e5;
}

.footer-main {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #bbb;
}

.footer-sub {
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ccc;
    margin-top: 0.75rem;
}

.footer-sub .paw {
    font-size: 0.7rem;
}

.footer-note {
    font-size: 0.7rem;
    font-style: italic;
    color: #ccc;
    margin-top: 1rem;
    font-family: 'Libre Baskerville', serif;
    text-transform: none;
    letter-spacing: 0;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
        gap: 2rem;
    }

    nav a {
        font-size: 0.65rem;
        padding: 0.5rem;
    }

    #hero {
        padding: 5rem 1.5rem 2rem;
    }

    .hero-logo {
        max-width: 280px;
    }

    .tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    #menu, #order, #location {
        padding: 5rem 1.5rem;
    }

    h2 {
        margin-bottom: 2.5rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .founder-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .founder-bio {
        text-align: left;
    }

    .founder-bio h3 {
        text-align: center;
    }

    .founder-title {
        text-align: center;
    }

    .menu-category h3 {
        font-size: 1rem;
    }

    .menu-category li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .order-button,
    .map-link {
        padding: 1.1rem 2.5rem;
        font-size: 0.8rem;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .order-subtitle {
        font-size: 0.95rem;
    }

    address {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    nav {
        gap: 1.25rem;
        padding: 0.85rem 1rem;
    }

    nav a {
        font-size: 0.6rem;
    }

    .hero-logo {
        max-width: 240px;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .scroll-cue {
        bottom: 1.5rem;
    }

    section {
        padding: 3.5rem 1.25rem;
    }

    #menu, #order, #location {
        padding: 4rem 1.25rem;
    }

    .menu-category {
        margin-bottom: 2rem;
    }

    .treats-note {
        margin-top: 3rem;
        font-size: 0.85rem;
    }

    footer {
        padding: 3rem 1.5rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    nav a {
        padding: 0.75rem 0.5rem;
    }

    .order-button,
    .map-link {
        min-height: 52px;
        padding: 1.25rem 2.5rem;
    }
}
