:root {
    --dark: #1a1a1a;
    --charcoal: #222222;
    --white: #ffffff;
    --off-white: #faf9f6;
    --mid-gray: #777777;
    --border: #e0ddd8;
    --green: #4a7c59;
    --green-dark: #3d6a4b;
    --yellow: #d4a03c;
    --yellow-light: #e8b94a;
    --font-disp: 'Rye', serif;
    --font-body: 'DM Sans', sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 9999;
    background: transparent;
}

.loader-bar {
    height: 100%;
    width: 0;
    background: var(--green);
    animation: load 1s ease-out forwards;
}

@keyframes load {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; opacity: 0; }
}

.page-loader {
    animation: fadeLoader 0.3s 1s ease forwards;
}

@keyframes fadeLoader {
    to { opacity: 0; pointer-events: none; }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    z-index: 100;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(8px);
    transition: background 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-disp);
    font-size: clamp(20px, 3vw, 24px);
    color: var(--yellow);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

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

.nav-order {
    background: var(--green);
    padding: 8px 16px;
    border-radius: 4px;
    color: var(--white) !important;
}

.nav-order:hover {
    background: var(--green-dark) !important;
}

.header-phone {
    display: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--yellow);
    transition: color 0.2s ease;
}

.header-phone:hover {
    color: var(--yellow-light);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    z-index: 200;
    padding: 80px 32px 40px;
    transition: right 0.35s var(--ease);
}

.nav-drawer.open {
    right: 0;
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.drawer-close:hover {
    opacity: 1;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-nav a {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.drawer-nav a:hover {
    color: var(--yellow);
}

.drawer-order {
    background: var(--green);
    padding: 12px 20px;
    border-radius: 4px;
    color: var(--white) !important;
    text-align: center;
    font-weight: 500;
}

.drawer-order:hover {
    background: var(--green-dark) !important;
    color: var(--white) !important;
}

.drawer-phone {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--yellow) !important;
    font-weight: 500;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(26, 26, 26, 0.2) 100%),
        linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: calc(64px + 20px) clamp(20px, 5vw, 60px) clamp(40px, 8vh, 80px);
}

.hero-text {
    max-width: 600px;
}

.hero-eyebrow {
    font-size: clamp(11px, 1.5vw, 13px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 16px;
}

.hero-name {
    font-family: var(--font-disp);
    font-size: clamp(48px, 12vw, 96px);
    line-height: 0.88;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero-name span {
    display: block;
    color: var(--yellow);
}

.hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    max-width: 460px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--green);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: transparent;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: transparent;
    color: var(--green);
    font-size: 15px;
    font-weight: 500;
    border: 1px solid var(--green);
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
    background: var(--green);
    color: var(--white);
}

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.hero-stat:first-child {
    padding-left: 0;
}

.stat-n {
    font-family: var(--font-disp);
    font-size: clamp(22px, 4vw, 32px);
    color: var(--yellow);
    line-height: 1;
}

.stat-l {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

.stat-rule {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.strip {
    background: var(--green);
    padding: 14px 20px;
}

.strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: clamp(13px, 2vw, 15px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    max-width: 1200px;
    margin: 0 auto;
}

.strip-dot {
    opacity: 0.4;
}

.about {
    background: var(--white);
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
}

.about-img-col {
    height: 300px;
    overflow: hidden;
}

.about-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-col {
    padding: clamp(50px, 8vw, 100px) clamp(20px, 5vw, 80px);
    background: var(--off-white);
}

.about-content {
    max-width: 520px;
}

.about-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
}

.about-title {
    font-family: var(--font-disp);
    font-size: clamp(36px, 7vw, 52px);
    line-height: 0.95;
    color: var(--dark);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.about-text {
    color: var(--mid-gray);
    font-weight: 300;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.feature {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-family: var(--font-disp);
    font-size: 20px;
    color: var(--dark);
}

.feature-desc {
    font-size: 13px;
    color: var(--mid-gray);
    margin-top: 2px;
}

.menu {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--white);
}

.menu-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.section-title {
    font-family: var(--font-disp);
    font-size: clamp(36px, 7vw, 56px);
    line-height: 0.95;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.section-sub {
    font-size: 17px;
    color: var(--mid-gray);
    margin-top: 12px;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vw, 50px);
}

.menu-cat {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.menu-cat-title {
    font-family: var(--font-disp);
    font-size: clamp(24px, 4vw, 32px);
    color: var(--dark);
    margin-bottom: 20px;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.item-name {
    color: var(--dark);
    font-weight: 400;
}

.item-dots {
    flex: 1;
    border-bottom: 1px dotted var(--border);
    min-width: 20px;
}

.menu-cta {
    text-align: center;
    margin-top: clamp(40px, 6vw, 60px);
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.waterfront {
    background: var(--dark);
}

.waterfront-wrap {
    display: grid;
    grid-template-columns: 1fr;
}

.waterfront-content {
    padding: clamp(50px, 8vw, 100px) clamp(20px, 5vw, 80px);
    order: 2;
}

.waterfront-inner {
    max-width: 520px;
}

.waterfront-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
}

.waterfront-title {
    font-family: var(--font-disp);
    font-size: clamp(40px, 8vw, 64px);
    line-height: 0.92;
    color: var(--white);
    margin-bottom: 24px;
}

.waterfront-text {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    margin-bottom: 32px;
}

.waterfront-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.waterfront-list li {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.waterfront-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wf-name {
    font-family: var(--font-disp);
    font-size: 22px;
    color: var(--white);
}

.wf-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

.waterfront-img {
    height: 300px;
    order: 1;
    overflow: hidden;
}

.waterfront-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--off-white);
}

.reviews-featured {
    margin-bottom: clamp(40px, 6vw, 60px);
}

.reviews-featured blockquote {
    font-family: var(--font-disp);
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.25;
    color: var(--dark);
    padding-left: 24px;
    border-left: 4px solid var(--green);
    max-width: 800px;
}

.reviews-featured cite {
    display: block;
    font-style: normal;
    font-size: 14px;
    color: var(--mid-gray);
    margin-top: 20px;
    padding-left: 24px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--border);
}

.review-card {
    padding: 28px 24px;
    border-bottom: 1px solid var(--border);
}

.review-card:last-child {
    border-bottom: none;
}

.review-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark);
    font-style: italic;
}

.review-card span {
    display: block;
    font-size: 12px;
    color: var(--mid-gray);
    margin-top: 12px;
    font-style: normal;
}

.location {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--white);
}

.location-info {
    padding: clamp(50px, 8vw, 80px) clamp(20px, 5vw, 60px);
    background: var(--off-white);
}

.location-inner {
    max-width: 400px;
}

.location-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
}

.location-title {
    font-family: var(--font-disp);
    font-size: clamp(36px, 7vw, 52px);
    line-height: 0.95;
    color: var(--dark);
    margin-bottom: 32px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.loc-item {
    display: flex;
    flex-direction: column;
}

.loc-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--mid-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.loc-item a {
    font-size: 17px;
    color: var(--dark);
    transition: color 0.2s;
}

.loc-item a:hover {
    color: var(--green);
}

.hours-title {
    font-family: var(--font-disp);
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 20px;
}

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

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: var(--dark);
}

.time {
    color: var(--mid-gray);
    font-size: 14px;
}

.hours-late .time {
    color: var(--green);
}

.location-map {
    height: 400px;
    background: var(--dark);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.cta-section {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--dark);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-disp);
    font-size: clamp(32px, 6vw, 48px);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
}

.footer {
    background: var(--charcoal);
    padding: 60px 0 40px;
    padding-bottom: calc(40px + 60px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    font-family: var(--font-disp);
    font-size: 22px;
    color: var(--yellow);
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--yellow);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-hours-title {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.footer-hours span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    z-index: 90;
    display: flex;
}

.mobile-call-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    transition: background 0.2s ease;
}

.mobile-bar-call {
    background: var(--green);
}

.mobile-bar-call:hover {
    background: var(--green-dark);
}

.mobile-bar-order {
    background: var(--yellow);
    color: var(--dark);
}

.mobile-bar-order:hover {
    background: var(--yellow-light);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (min-width: 640px) {
    .nav-desktop {
        display: flex;
    }

    .header-phone {
        display: block;
    }

    .nav-toggle {
        display: none;
    }

    .mobile-call-bar {
        display: none;
    }

    .footer {
        padding-bottom: 60px;
    }

    .about-wrap {
        grid-template-columns: 1fr 1fr;
        min-height: 600px;
    }

    .about-img-col {
        height: auto;
    }

    .waterfront-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .waterfront-content {
        order: 1;
    }

    .waterfront-img {
        height: auto;
        order: 2;
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .review-card {
        border-right: 1px solid var(--border);
        border-bottom: none;
    }

    .review-card:last-child {
        border-right: none;
    }

    .location {
        grid-template-columns: 1fr 1fr;
    }

    .location-map {
        height: auto;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
}

@media (min-width: 960px) {
    .hero-name {
        font-size: clamp(72px, 10vw, 110px);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(40px, 6vw, 80px);
    }

    .waterfront-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .waterfront-list li {
        flex: 1 1 45%;
        min-width: 200px;
    }
}