:root {
    --orange: #D68C45;
    --navy: #1D2D44;
    --cream: #F9F1E7;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --border-radius: 0;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--navy);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: url('cursor.svg') 3 3, auto;
    -webkit-font-smoothing: antialiased;
}

/* Background Pattern - Subtle & Integrated */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('pattern.png');
    background-size: 600px;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
    filter: brightness(0) invert(1);
}

/* Custom Cursor */
.custom-cursor {
    display: none;
}

@media (max-width: 1024px) {
    .custom-cursor { display: none; }
    body { cursor: auto; }
}

/* Header - Clean & Balanced */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5vw;
    background-color: var(--cream);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    min-height: 72px;
    overflow: visible;
}

/* Centered round logo with overhang */
.brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10px;
    bottom: -38px;
    z-index: 1010;
    pointer-events: auto;
}

.brand img.nav-logo {
    height: 140px;
    width: 140px;
    display: block;
    border-radius: 50%;
    border: none;
    box-shadow: none;
    object-fit: cover;
}

.strap {
    font-weight: 800;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--orange);
    padding: 0.3rem 1rem;
    transform: rotate(-1.5deg);
    border: 2px solid var(--navy);
    box-shadow: 3px 3px 0 var(--navy);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.pill {
    background-color: var(--white);
    color: var(--navy);
    padding: 0.7rem 1.8rem;
    text-decoration: none;
    font-weight: 900;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 3px solid var(--navy);
    box-shadow: 5px 5px 0 var(--orange);
}

.pill:hover {
    background-color: var(--orange);
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--white);
}

/* Pointer cursor for interactive elements */
a, button, .pill {
    cursor: url('cursor.svg') 3 3, pointer;
}

/* Hero Section - Refined Split */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10.5rem 5vw 4rem;
    background: var(--navy);
}

.hero-content {
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    z-index: 10;
}

h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--white);
    transform: rotate(-1deg);
}

.lead {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: 700;
    max-width: 30ch;
    margin-bottom: 2.5rem;
    background: var(--orange);
    color: var(--navy);
    padding: 0.8rem 1.5rem;
    border: 3px solid var(--white);
    display: inline-block;
}

.hero-image-wrap {
    position: relative;
    height: 550px;
}

.hero-img {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border: 6px solid var(--white);
    box-shadow: 15px 15px 0 var(--orange);
}

.hero-img-badge {
    position: absolute;
    bottom: -20px; left: -20px;
    background: var(--white);
    color: var(--navy);
    padding: 1.2rem;
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    border: 4px solid var(--orange);
    transform: rotate(-3deg);
    z-index: 20;
}

/* Sections General */
.section-wrap {
    padding: 6rem 5vw;
}

.section-wrap.orange { background-color: var(--orange); color: var(--navy); }
.section-wrap.cream { background-color: var(--cream); color: var(--navy); }
.section-wrap.navy { background-color: var(--navy); color: var(--cream); }

h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text h2 { transform: rotate(-0.5deg); }
.story-text p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
}

.story-list {
    list-style: none;
    font-size: 1.2rem;
    font-weight: 800;
}

.story-list li {
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: var(--navy);
    color: var(--white);
    border: 3px solid var(--orange);
    transform: rotate(0.5deg);
}

/* Flow Section */
.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.step-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border: 4px solid var(--navy);
    box-shadow: 8px 8px 0 var(--orange);
    text-align: center;
    transition: var(--transition);
}

.step-card:hover { transform: translateY(-5px); }

.step-num {
    font-family: 'Anton', sans-serif;
    font-size: 3.5rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 1rem;
    -webkit-text-stroke: 2px var(--navy);
}

.step-card p {
    font-weight: 800;
    font-size: 1rem;
    color: var(--navy);
}

/* Menu Section */
.menu-board {
    position: relative;
    background: var(--cream);
    padding: 6rem 5vw;
    border-top: 8px solid var(--orange);
    border-bottom: 8px solid var(--orange);
}

.menu-board::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('pattern.png');
    background-size: 520px;
    background-repeat: repeat;
    opacity: 0.08;
    pointer-events: none;
}

.menu-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-cat h3 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--orange);
    text-shadow: 2px 2px 0 var(--navy);
}

.menu-cat ul { list-style: none; }
.menu-item { 
    padding: 1rem 0; 
    border-bottom: 2px dashed var(--navy); 
}
.menu-item h4 {
    font-family: 'Anton', sans-serif;
    font-size: 1.6rem;
    line-height: 1.1;
    color: var(--navy);
    letter-spacing: 1px;
}
.menu-item p {
    margin-top: 0.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    opacity: 0.85;
}

/* Ribbon - Refined Marquee */
.ribbon {
    background-color: var(--orange);
    color: var(--navy);
    padding: 1.5rem 0;
    border-top: 5px solid var(--white);
    border-bottom: 5px solid var(--white);
    overflow: hidden;
    white-space: nowrap;
    transform: rotate(-1deg) scale(1.02);
}

.ribbon p {
    display: inline-block;
    animation: marquee 40s linear infinite;
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
}

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

/* Footer - Polished Finish */
footer {
    background-color: var(--navy);
    padding: 6rem 5vw;
    text-align: center;
}

.footer-logo {
    height: 100px;
    margin-bottom: 2rem;
}

.footer-strap {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--orange);
    text-transform: uppercase;
    line-height: 1;
}

footer p {
    margin-top: 3rem;
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Contact form */
form.contact-form {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    margin-top: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.form-field input,
.form-field textarea,
.form-field select {
    padding: 0.9rem 0.9rem;
    border: 3px solid var(--navy);
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    outline: none;
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
}

.form-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content, .story-grid { grid-template-columns: 1fr; }
    .hero-image-wrap { height: 400px; order: -1; }
    .hero-text { text-align: center; }
    h1 { font-size: 4rem; }
    .section-wrap { padding: 4rem 5vw; }
}

@media (max-width: 768px) {
    .topbar .strap { display: none; }
    .brand img.nav-logo { height: 110px; width: 110px; }
    .brand { bottom: -22px; }
    .hero-section { padding-top: 9.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    .hero-img-badge { font-size: 1.1rem; bottom: -10px; left: -10px; padding: 0.8rem; }
}
