:root {
    --navy: #0f2b49;
    --navy-2: #173b5f;
    --gold: #e8b34a;
    --gold-dark: #b9821e;
    --cream: #faf8f3;
    --paper: #fffdf9;
    --ink: #14233a;
    --muted: #677282;
    --line: #e4e0d8;
    --white: #fff;
    --shadow: 0 18px 45px rgba(15, 43, 73, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1360px, calc(100% - 56px));
    margin: 0 auto;
}

.narrow {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

h1,
h2,
h3 {
    font-family: "Libre Baskerville", Georgia, serif;
    color: var(--navy);
    margin-top: 0;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    height: 72px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eee9e1;
}

.header-inner {
    height: 72px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.site-logo {
    display: block;
    width: 390px;
    max-width: 100%;
}

    .site-logo img {
        width: 100%;
        height: 62px;
        object-fit: contain;
        object-position: left center;
    }


/* Desktop navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 42px;
    height: 100%;
}

    .main-nav a {
        text-decoration: none;
        font-weight: 600;
        padding: 25px 8px 19px;
        border-bottom: 3px solid transparent;
        color: var(--navy);
    }

        .main-nav a:hover,
        .main-nav a.active {
            border-color: var(--gold-dark);
            color: #07182b;
        }


/* Phone button */

.header-phone {
    justify-self: end;
    text-decoration: none;
    background: var(--navy);
    color: #fff;
    padding: 12px 24px;
    border-radius: 9px;
    font-weight: 700;
    font-size: 18px;
}


/* Mobile menu button */

.nav-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 28px;
    color: var(--navy);
    cursor: pointer;
}


/* =========================================================
   HOME HERO
   ========================================================= */

.hero-home {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: #172536;
    color: #fff;
}

.hero-photo {
    position: absolute;
    inset: 0 0 0 34%;
    background-image: url('../images/hero-fish-chips.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(9, 20, 31, .97) 0%, rgba(9, 20, 31, .88) 32%, rgba(9, 20, 31, .36) 61%, rgba(9, 20, 31, .08) 100% );
}

.hero-home-content {
    position: relative;
    z-index: 2;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 26px;
}

.hero-home-copy {
    width: min(620px, 55%);
}

.hero-kicker,
.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.hero-home h1 {
    color: #fff;
    font-size: clamp(38px, 4vw, 57px);
    line-height: 1.05;
    margin-bottom: 14px;
}

.hero-home-copy > p {
    font-size: 17px;
    line-height: 1.6;
    max-width: 520px;
    color: #f4f4f2;
    margin: 0;
}


/* Hero buttons */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 22px 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
}

.btn-gold {
    background: linear-gradient(180deg, #f3c65e, #e4aa36);
    color: #09213a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.btn-navy {
    background: var(--navy);
    color: #fff;
}

.btn-outline-light {
    border-color: #fff;
    color: #fff;
    background: rgba(10, 20, 30, .35);
}


/* Hero facts */

.hero-facts {
    display: flex;
    gap: 30px;
    font-size: 13px;
    line-height: 1.35;
}

    .hero-facts > div {
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

.fact-icon {
    font-size: 22px;
    color: var(--gold);
    line-height: 1;
}

.hero-script {
    font-family: "Segoe Script", "Brush Script MT", cursive;
    color: #fff;
    font-size: 31px;
    line-height: 1.05;
    text-align: center;
    transform: rotate(-5deg);
    margin-right: 13%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

    .hero-script span {
        font-size: 24px;
    }


/* =========================================================
   BENEFITS
   ========================================================= */

.benefit-strip {
    background: #fbfaf7;
    border-bottom: 1px solid #ece8e0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-top: 23px;
    padding-bottom: 23px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: center;
    padding: 0 28px;
    border-right: 1px solid #d8d5ce;
}

    .benefit-item:first-child {
        padding-left: 0;
    }

    .benefit-item:last-child {
        border-right: 0;
        padding-right: 0;
    }

.benefit-icon {
    font-size: 42px;
    text-align: center;
    filter: grayscale(1);
    color: var(--navy);
}

.benefit-item h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    color: #344257;
}


/* =========================================================
   POPULAR MENU
   ========================================================= */

.home-menu-section {
    padding: 34px 0 18px;
    background: #fff;
}

.home-section-heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-end;
    margin-bottom: 12px;
}

    .home-section-heading h2 {
        font-size: 34px;
        margin-bottom: 5px;
    }

    .home-section-heading p {
        margin: 0;
        color: #354257;
        font-size: 14px;
    }

.gold-link {
    color: #9d6300;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid #9d6300;
    padding-bottom: 6px;
    white-space: nowrap;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.popular-card {
    background: #fff;
    border: 1px solid #e2e0db;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 5px 14px rgba(15, 43, 73, .05);
}

    .popular-card img {
        width: 100%;
        height: 88px;
        object-fit: cover;
    }

.popular-body {
    padding: 10px 15px 12px;
}

    .popular-body h3 {
        font-size: 17px;
        margin-bottom: 4px;
    }

.price-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 0;
    border-bottom: 1px solid #eee;
    font-size: 12px;
}

    .price-row:last-child {
        border-bottom: 0;
    }

    .price-row strong {
        font-weight: 500;
        text-align: right;
    }


/* =========================================================
   CONTACT RIBBON
   ========================================================= */

.contact-ribbon {
    background: linear-gradient(100deg, #102d4d, #173f66);
    color: #fff;
    padding: 18px 0 21px;
    margin-top: 12px;
}

.contact-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ribbon-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 15px;
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

    .ribbon-item:first-child {
        padding-left: 0;
    }

    .ribbon-item:last-child {
        border-right: 0;
        padding-right: 0;
    }

.ribbon-icon {
    font-size: 40px;
    color: var(--gold);
    text-align: center;
}

.ribbon-item h3 {
    font-size: 16px;
    color: #fff;
    margin: 3px 0 6px;
}

.ribbon-item p {
    font-size: 12px;
    line-height: 1.5;
    margin: 0 0 6px;
    color: #f1f5f8;
}

.ribbon-item > a {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.map-button {
    display: inline-block !important;
    background: var(--gold) !important;
    color: #0b2847 !important;
    padding: 9px 12px;
    border-radius: 5px;
    font-size: 12px !important;
    margin-top: 2px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #0b223a;
    color: #dfe7ef;
    padding: 24px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: 30px;
    align-items: center;
    font-size: 13px;
}

    .footer-inner strong,
    .footer-inner span {
        display: block;
    }

    .footer-inner span {
        color: #aebccc;
        margin-top: 4px;
    }

.footer-links {
    display: flex;
    gap: 18px;
}

    .footer-links a {
        color: #fff;
        text-decoration: none;
        font-weight: 700;
    }


/* =========================================================
   NORMAL PAGE HERO
   ========================================================= */

.page-hero {
    padding: 65px 0;
    background: #f6f3ed;
}

.page-hero-dark {
    background: linear-gradient(110deg, #102d4d, #173e64);
}

.page-hero h1 {
    font-size: 46px;
    margin-bottom: 14px;
}

.page-hero-dark h1 {
    color: #fff;
}

.page-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #667080;
    max-width: 800px;
}

.page-hero-dark p {
    color: #dce5ec;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
    padding: 62px 0;
}

.lead {
    font-size: 18px;
    line-height: 1.8;
    color: #475366;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-page-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 55px;
    align-items: center;
}

    .about-page-grid h2 {
        font-size: 38px;
    }

    .about-page-grid p {
        line-height: 1.75;
        color: #5d6878;
    }

.about-photo img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
}


/* =========================================================
   MENU PAGE
   ========================================================= */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    align-items: start;
}

.menu-card {
    background: #fff;
    border: 1px solid #e4e0d8;
    border-radius: 14px;
    padding: 24px;
    scroll-margin-top: 95px;
    box-shadow: 0 7px 22px rgba(15, 43, 73, .06);
}

    .menu-card h2 {
        font-size: 30px;
        margin-bottom: 8px;
    }

.menu-description {
    color: #657082;
    line-height: 1.6;
    border-bottom: 1px solid #ece8e0;
    padding-bottom: 14px;
}

.menu-note {
    background: #fff4d8;
    color: #694800;
    padding: 10px 12px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 13px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

    .menu-item > div {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .menu-item small {
        color: #77808c;
    }

    .menu-item > span {
        text-align: right;
        color: #173d61;
        font-weight: 700;
    }

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

    .filter-row a {
        text-decoration: none;
        background: #fff;
        border: 1px solid #ded9cf;
        padding: 8px 12px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 700;
    }

.menu-help {
    padding-top: 0;
}

.menu-help-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: #f6f3ed;
    border-radius: 14px;
    padding: 28px;
}

    .menu-help-card h2 {
        font-size: 28px;
    }

.original-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

    .original-grid img {
        width: 100%;
        border-radius: 14px;
        box-shadow: var(--shadow);
    }


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-card {
    border: 1px solid #e3dfd7;
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(15, 43, 73, .06);
}

    .contact-card h2 {
        font-size: 26px;
    }

    .contact-card p {
        line-height: 1.7;
        color: #647080;
    }

.contact-card-icon {
    font-size: 34px;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.large-contact-link {
    font-size: 25px;
    font-weight: 700;
    text-decoration: none;
    color: var(--navy);
}

.hours {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #eee;
    padding: 13px 0;
}

    .hours strong {
        text-align: right;
    }

.warning-card {
    background: #fffaf0;
}

.muted {
    color: #7a828b;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .site-logo {
        width: 310px;
    }

    .header-phone {
        display: none;
    }

    .main-nav {
        justify-self: end;
    }

    .hero-photo {
        inset: 0 0 0 25%;
    }

    .hero-home-copy {
        width: 62%;
    }

    .hero-script {
        display: none;
    }

    .benefit-grid,
    .contact-ribbon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item,
    .ribbon-item {
        border-right: 0;
        border-bottom: 1px solid #ddd;
        padding: 18px;
    }

        .benefit-item:first-child,
        .ribbon-item:first-child {
            padding-left: 18px;
        }

        .benefit-item:last-child,
        .ribbon-item:last-child {
            padding-right: 18px;
            border-bottom: 0;
        }

    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE
   RIGHT-SIDE MENU FIX
   ========================================================= */

@media (max-width: 760px) {

    .container {
        width: min(100% - 28px, 1360px);
    }

    .site-header,
    .header-inner {
        height: 66px;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 10000;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .site-logo {
        width: 245px;
    }

        .site-logo img {
            height: 58px;
        }


    /* Hamburger */

    .nav-toggle {
        display: block;
        justify-self: end;
        position: relative;
        z-index: 10002;
        padding: 6px;
        cursor: pointer;
    }


    /* RIGHT SIDE MOBILE DRAWER */

    .main-nav {
        display: flex;
        position: fixed;
        top: 66px;
        right: -300px;
        left: auto;
        width: 280px;
        height: calc(100vh - 66px);
        background: var(--navy);
        border: none;
        border-radius: 0;
        padding: 18px 18px 30px;
        box-shadow: -10px 10px 30px rgba(0, 0, 0, .30);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        overflow-y: auto;
        transition: right .3s ease;
        z-index: 10001;
    }


        /* Open drawer */

        .main-nav.open {
            display: flex;
            right: 0;
        }


        /* IMPORTANT:
       Make all mobile menu links visible on dark background */

        .main-nav a {
            display: block;
            width: 100%;
            padding: 15px 14px;
            color: #ffffff !important;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, .16);
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: color .2s ease, background .2s ease;
        }


            /* Hover */

            .main-nav a:hover {
                color: var(--gold) !important;
                background: rgba(255, 255, 255, .06);
                border-bottom-color: rgba(255, 255, 255, .16);
            }


            /* Active menu item */

            .main-nav a.active {
                color: var(--gold) !important;
                background: rgba(255, 255, 255, .05);
                border-bottom: 1px solid var(--gold);
            }


        /* If a phone link is also inside navigation */

        .main-nav .phone-link {
            margin-top: 18px;
            background: var(--gold);
            color: var(--navy) !important;
            text-align: center;
            border-radius: 7px;
            border-bottom: none;
            padding: 14px;
        }

            .main-nav .phone-link:hover {
                background: #f3c65e;
                color: var(--navy) !important;
            }


    /* HERO MOBILE */

    .hero-home {
        min-height: 510px;
    }

    .hero-photo {
        inset: 0;
        background-position: 60% center;
    }

    .hero-shade {
        background: linear-gradient( 90deg, rgba(7, 17, 28, .92), rgba(7, 17, 28, .55) );
    }

    .hero-home-content {
        min-height: 510px;
    }

    .hero-home-copy {
        width: 100%;
        padding-top: 12px;
    }

    .hero-home h1 {
        font-size: 40px;
    }

    .hero-home-copy > p {
        font-size: 15px;
    }

    .hero-facts {
        gap: 16px;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }


    /* MOBILE GRIDS */

    .benefit-grid,
    .contact-ribbon-grid,
    .popular-grid,
    .contact-page-grid,
    .menu-grid,
    .about-page-grid,
    .original-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }


    .home-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .popular-card img {
        height: 145px;
    }

    .contact-ribbon {
        padding-top: 5px;
    }

    .ribbon-item {
        padding: 20px 0 !important;
    }

    .benefit-item {
        padding: 19px 0 !important;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .page-hero {
        padding: 45px 0;
    }

        .page-hero h1 {
            font-size: 36px;
        }

    .section {
        padding: 45px 0;
    }

    .menu-help-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-photo img {
        min-height: 220px;
    }
}


/* =========================================================
   VERY SMALL MOBILES
   ========================================================= */

@media (max-width: 480px) {

    .site-logo {
        width: 205px;
    }

    .hero-home h1 {
        font-size: 34px;
    }

    .hero-home {
        min-height: 540px;
    }

    .hero-home-content {
        min-height: 540px;
    }

    .main-nav {
        width: min(280px, 85vw);
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .home-section-heading h2 {
        font-size: 28px;
    }

    .menu-card {
        padding: 18px;
    }

        .menu-card h2 {
            font-size: 25px;
        }

    .large-contact-link {
        font-size: 20px;
    }
}
