:root {
    --ink: #071014;
    --soft: #0b1c21;
    --cream: #f4efe5;
    --paper: #fff8ed;
    --gold: #c79a62;
    --blue: #22aab9;
    --muted: #b8c2c4;
    --line: rgba(199,154,98,.45);
    --shadow: 0 20px 70px rgba(0,0,0,.35);
    --radius: 18px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--cream);
    font-family: "Trebuchet MS","Lucida Sans Unicode",Arial,sans-serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

/* ---------------- HEADER ---------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px clamp(18px,4vw,52px);
    background: rgba(7,16,20,.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

.logo {
    width: 180px;
    height: auto;
    object-fit: contain;
    
}

.logo-white {
    filter: grayscale(1) brightness(0) invert(1) contrast(1.15);
}

.footer-logo {
    width: 190px;
    margin-bottom: 14px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(10px,1.3vw,20px);
    font-size: .72rem;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.main-nav a {
    text-decoration: none;
    color: var(--cream);
    opacity: .88;
}

.main-nav a:hover {
    color: var(--gold);
    opacity: 1;
}

.nav-cta {
    background: var(--gold);
    color: var(--ink) !important;
    padding: 12px 18px;
    font-weight: 800;
    opacity: 1 !important;
}

.nav-toggle,
.nav-button {
    display: none;
}

/* ---------------- HERO ---------------- */

.hero {
    position: relative;
    min-height: 78vh;
    display: grid;
    align-items: center;
    padding: 80px clamp(20px,5vw,70px);
    background-color: var(--ink);
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--line);
}

.hero > div {
    max-width: 680px;
}

.home {
    background-image:
        linear-gradient(90deg,rgba(7,16,20,.95),rgba(7,16,20,.58),rgba(7,16,20,.1)),
        url("../images/Kitchenstreet_greenside.png");
}

.corporate {
    background-image:
        linear-gradient(90deg,rgba(7,16,20,.96),rgba(7,16,20,.5)),
        url("../images/kitchenstreet_corporate.png");
}
.film {
    background-image:
        linear-gradient(90deg,rgba(7,16,20,.96),rgba(7,16,20,.5)),
        url("../images/kitchenstreet_tvset.png");
}

.foodmenu {
    background-image:
        linear-gradient(90deg,rgba(7,16,20,.96),rgba(7,16,20,.5)),
        url("../images/bustourant-33.jpg");
}

.wedding {
    background-image:
        linear-gradient(90deg,rgba(7,16,20,.96),rgba(7,16,20,.45)),
        url("../images/kitchen_street_married_couple.png");
}

.location {
    background-image:
        linear-gradient(90deg,rgba(7,16,20,.96),rgba(7,16,20,.45)),
        url("../images/gap_location.jpeg");
}

.private {
    background-image:
        linear-gradient(90deg,rgba(7,16,20,.96),rgba(7,16,20,.45)),
        url("../images/kitchenstreet_party.png");
}
.story {
    background-image:
        linear-gradient(90deg,rgba(7,16,20,.96),rgba(7,16,20,.45)),
        url("../images/kitchenstreet_AgaAndMartin.png");
}


.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2.4px;
    font-size: .78rem;
    font-weight: 800;
}

h1, h2, h3 {
    margin: 0;
    line-height: 1.05;
}

h1, h2 {
    font-family: Georgia,"Times New Roman",serif;
    font-weight: 500;
}

h1 {
    font-size: clamp(3rem,8vw,7.4rem);
    letter-spacing: -2px;
    text-transform: uppercase;
}

h1 em,
h2 em {
    color: var(--gold);
    display: block;
    font-style: italic;
    text-transform: none;
}

h2 {
    font-size: clamp(2rem,4vw,4.25rem);
}

h3 {
    font-size: 1.05rem;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.hero p:not(.eyebrow) {
    max-width: 540px;
    color: var(--muted);
    font-size: 1.08rem;
    margin: 20px 0 30px;
}

/* ---------------- BUTTONS ---------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 22px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--cream);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 800;
    font-size: .78rem;
    cursor: pointer;
    margin: 4px 8px 4px 0;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--ink);
}

.btn-line {
    background: rgba(7,16,20,.42);
}

/* ---------------- FEATURE BAR ---------------- */

.feature-bar {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    background: var(--soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-bar article {
    padding: 26px clamp(18px,3vw,42px);
    border-right: 1px solid var(--line);
}

.feature-bar article:last-child {
    border-right: 0;
}

.feature-bar b {
    color: var(--gold);
    font-size: 1.45rem;
    display: inline-block;
    margin-bottom: 10px;
}

.feature-bar h3 {
    margin-bottom: 5px;
    color: var(--cream);
    font-size: .88rem;
}

.feature-bar p {
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
}

/* ---------------- COLOURED SECTIONS ---------------- */

.blue {
    background: linear-gradient(90deg,#08242e,#0c3642);
}

.pink {
    background: linear-gradient(90deg,#24121b,#4b172e);
}

/* ---------------- SECTION WRAPPERS ---------------- */

.section {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(56px,8vw,100px) clamp(20px,4vw,40px);
}

.cream {
    background: var(--paper);
    color: var(--ink);
    padding: clamp(56px,8vw,90px) clamp(20px,4vw,40px);
}

.cream > * {
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
}

/* ---------------- TITLES ---------------- */

.section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 30px;
}

.section-title.center {
    display: block;
    text-align: center;
}

.section-title a {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 800;
    font-size: .8rem;
}

/* ---------------- FOOD GRID ---------------- */

.food-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

.food-row article {
    background: white;
    color: var(--ink);
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.food-row img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.food-row h3 {
    padding: 16px 18px 6px;
}

.food-row p {
    padding: 0 18px 18px;
    margin: 0;
    color: #415057;
    font-size: .92rem;
}

/* ---------------- TRUSTED ---------------- */

.trusted {
    overflow: hidden;
    background: var(--cream);
    color: var(--ink);
    padding: 46px 0;
    border-top: 1px solid rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.trusted .eyebrow,
.trusted h2 {
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(20px,4vw,40px);
    padding-right: clamp(20px,4vw,40px);
}

.trusted h2 {
    margin-bottom: 28px;
}

.logo-carousel {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent);
}

.logo-track {
    display: flex;
    gap: 50px;
    align-items: center;
    width: max-content;
    animation: logoScroll 32s linear infinite;
}

.logo-track img {
    height: 62px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .72;
    flex: 0 0 auto;
}

.logo-track img:hover {
    filter: grayscale(0);
    opacity: 1;
}

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

/* ---------------- CARDS ---------------- */

.cards {
    display: grid;
    gap: 22px;
}

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

.cards.four {
    grid-template-columns: repeat(4,1fr);
}

.cards article,
.pricing article,
.contact-panel,
.premium-form {
    background: linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.cards h2,
.pricing h3 {
    color: var(--cream);
    font-size: clamp(1.55rem,2.4vw,2.3rem);
    margin-bottom: 12px;
}

.cards p,
.pricing li {
    color: var(--muted);
}

/* ---------------- PRICING ---------------- */

.pricing {
    display: grid;
    gap: 22px;
}

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

.pricing .featured {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.price {
    color: var(--gold);
    font-size: 2rem;
    font-family: Georgia,"Times New Roman",serif;
    margin: 14px 0 20px;
}

.pricing ul {
    padding-left: 18px;
    margin: 0;
}

/* ---------------- MENU LIST ---------------- */

.menu-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.menu-list article {
    background: white;
    border: 1px solid rgba(0,0,0,.1);
    padding: 22px;
    border-radius: 14px;
}

.menu-list h3 {
    color: var(--gold);
    margin-bottom: 8px;
}

.menu-list p {
    margin: 0;
}

/* ---------------- CTA ---------------- */

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    max-width: var(--max);
    margin: clamp(30px,6vw,80px) auto;
    padding: 36px clamp(22px,5vw,54px);
    background: linear-gradient(90deg,rgba(199,154,98,.18),rgba(199,154,98,.08));
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.cta h2 {
    font-size: clamp(1.8rem,3vw,3.3rem);
}

.cta p {
    max-width: 720px;
    color: var(--muted);
}

/* ---------------- PAGE HERO ---------------- */

.page-hero {
    padding: clamp(80px,11vw,150px) clamp(20px,5vw,70px) clamp(50px,7vw,90px);
    background:
        radial-gradient(circle at 80% 20%,rgba(199,154,98,.16),transparent 35%),
        linear-gradient(180deg,#071014,#0e2025);
    border-bottom: 1px solid var(--line);
    background-image:
        linear-gradient(90deg,rgba(7,16,20,.96),rgba(7,16,20,.45)),
        url("../images/kids3.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;    
}

.page-hero h1 {
    max-width: 980px;
    font-size: clamp(2.8rem,6vw,6.4rem);
    text-transform: uppercase;
}

.page-hero h1 em {
    color: var(--gold);
    display: block;
    font-style: italic;
    text-transform: none;
}

.page-hero p {
    max-width: 700px;
    color: var(--muted);
}

/* ---------------- MENU TABS ---------------- */

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
    justify-content: center;
}

.menu-tabs a {
    text-decoration: none;
    border: 1px solid var(--line);
    color: var(--cream);
    padding: 10px 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: .74rem;
}

/* ---------------- MENU GRID ---------------- */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.menu-option {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.035);
    border-radius: 15px;
    overflow: hidden;
}

.menu-option img,
.placeholder-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.placeholder-img {
    display: grid;
    place-items: center;
    color: var(--gold);
    background:
        linear-gradient(135deg,rgba(199,154,98,.12),rgba(34,170,185,.07)),
        repeating-linear-gradient(45deg,rgba(255,255,255,.035) 0 10px,transparent 10px 20px);
    border-bottom: 1px solid var(--line);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    font-size: .78rem;
}

.menu-option div:last-child {
    padding: 18px;
}

.menu-option h3 {
    color: var(--cream);
    margin-bottom: 8px;
}

.menu-option p {
    color: var(--muted);
    margin: 0;
}

/* ---------------- SPLIT ---------------- */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: center;
}

.split p {
    color: var(--muted);
}

/* ---------------- ROUNDED ---------------- */

.rounded {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

/* ---------------- TICK LIST ---------------- */

.tick-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    columns: 2;
}

.tick-list li {
    margin-bottom: 10px;
    color: var(--muted);
}

.tick-list li:before {
    content: "•";
    color: var(--gold);
    margin-right: 8px;
}

/* ---------------- MAP CARD ---------------- */

.map-card {
    position: relative;
    min-height: 420px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 20% 30%,rgba(199,154,98,.18),transparent 20%),
        radial-gradient(circle at 70% 65%,rgba(34,170,185,.18),transparent 25%),
        #0b1c21;
    background-image:
        linear-gradient(90deg,rgba(7,16,20,.95),rgba(7,16,20,.58),rgba(7,16,20,.1)),
        url("../images/mapofscotland_1.png");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.pin {
    position: absolute;
    padding: 8px 12px;
    background: var(--gold);
    color: var(--ink);
    border-radius: 999px;
    font-weight: 800;
    font-size: .8rem;
}

.p1 { left: 36%; top: 54%; }
.p2 { right: 15%; top: 52%; }
.p3 { left: 34%; top: 38%; }
.p4 { left: 25%; bottom: 18%; }

/* ---------------- CONTACT ---------------- */

.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 34px;
    align-items: start;
}

.contact-panel p {
    color: var(--muted);
}

.contact-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.contact-list a {
    color: var(--gold);
    text-decoration: none;
}

/* ---------------- FORM ---------------- */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: .75rem;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(199,154,98,.42);
    background: rgba(0,0,0,.18);
    color: var(--cream);
    padding: 13px 14px;
    font: inherit;
    outline: none;
}

textarea {
    resize: vertical;
    margin-top: 16px;
}

.premium-form button {
    margin-top: 18px;
    width: 100%;
}

/* ---------------- FOOTER ---------------- */

.site-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 34px;
    padding: 44px clamp(20px,5vw,70px);
    border-top: 1px solid var(--line);
    background: #050b0e;
    color: var(--muted);
}

.site-footer a {
    color: var(--muted);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

/* ---------------- MEDIA QUERIES ---------------- */

@media (max-width: 1120px) {
    .main-nav {
        gap: 11px;
        font-size: .68rem;
    }

    .logo {
        width: 150px;
    }
}

@media (max-width: 980px) {
    .nav-button {
        display: grid;
        gap: 5px;
        cursor: pointer;
    }

    .nav-button span {
        width: 30px;
        height: 2px;
        background: var(--cream);
    }

    .main-nav {
        position: absolute;
        inset: 100% 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(7,16,20,.99);
        border-bottom: 1px solid var(--line);
        padding: 12px 22px 22px;
    }

    .main-nav a {
        padding: 13px 0;
        border-bottom: 1px solid rgba(199,154,98,.18);
    }

    .nav-toggle:checked ~ .main-nav {
        display: flex;
    }

    .feature-bar,
    .food-row,
    .cards.four,
    .cards.three,
    .pricing.three,
    .menu-list,
    .menu-grid,
    .split,
    .contact-layout,
    .site-footer {
        grid-template-columns: 1fr 1fr;
    }

    .cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 660px) {
    .site-header {
        padding: 14px 18px;
    }

    .logo {
        width: 135px;
    }

    h1 {
        font-size: clamp(2.7rem,14vw,4.2rem);
    }

    .hero {
        min-height: 72vh;
        padding: 60px 20px;
    }

    .feature-bar,
    .food-row,
    .cards.four,
    .cards.three,
    .pricing.three,
    .menu-list,
    .menu-grid,
    .split,
    .contact-layout,
    .site-footer,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        display: block;
    }

    .btn {
        width: 100%;
        margin-right: 0;
    }

    .pricing .featured {
        transform: none;
    }

    .tick-list {
        columns: 1;
    }
}

/* CHECK LIST */
.check-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.check-list li {
    padding: 8px 0 8px 30px;
    position: relative;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--gold);
    font-weight: 900;
}

.logo-black{filter:grayscale(1) brightness(0) contrast(1.15)}


.section-note{max-width:var(--max);margin:24px auto 0;color:var(--muted)}
.compact-section{padding-bottom:40px}
.menu-price{color:var(--gold)!important;font-weight:800;margin-top:12px!important}
.menu-page{padding-top:52px}
.menu-page + .menu-page{padding-top:28px}
.menu-tabs{position:sticky;top:82px;z-index:20;background:rgba(7,16,20,.94);padding:14px clamp(20px,4vw,40px);border-bottom:1px solid var(--line);backdrop-filter:blur(12px)}
@media (prefers-reduced-motion: reduce){.logo-track{animation:none}.btn:hover{transform:none}html{scroll-behavior:auto}}
