/* ==========================================================================
   Grand Restaurant — Frontend stylesheet
   Original theme: Grand Restaurant v7.0 (Sushi demo)
   ========================================================================== */

@import url("../fonts/fonts.css");

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
    --bg:            #000000;
    --text:          #cecece;
    --heading:       #ffffff;
    --accent:        #c9a581;
    --line:          rgba(201, 165, 129, .44);   /* #C9A58170 */
    --pattern-op:    .15;

    --font-body:     "Jost", "Helvetica Neue", Arial, sans-serif;
    --font-heading:  "Six Caps", "Jost", sans-serif;
    --font-script:   "Aguafina Script", cursive;

    --panel-h:       95vh;
    --radius-lg:     250px;
    --radius-md:     150px;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; border: 0; vertical-align: middle; }

a { color: var(--heading); text-decoration: none; transition: color .3s ease; }
a:hover, a:focus { color: var(--accent); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    color: var(--heading);
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

::selection { background: var(--accent); color: #000; }

button, input, select, textarea { font: inherit; color: inherit; }

/* --------------------------------------------------------------------------
   3. Reusable building blocks
   -------------------------------------------------------------------------- */

/* Thin gold frame that wraps the pattern panels */
.frame {
    display: flex;
    flex: 1 1 auto;
    border: 1px solid var(--line);
    padding: 10px;
    min-width: 0;
}

/* Panel showing the japanese pattern over black */
.panel-pattern {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    width: 100%;
    min-height: var(--panel-h);
    border: 1px solid var(--line);
    padding: 60px 30px;
    overflow: hidden;
    text-align: center;
}
.panel-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--pattern-url);
    background-position: center center;
    background-repeat: repeat;
    opacity: var(--pattern-op);
    pointer-events: none;
}
.panel-pattern > * { position: relative; z-index: 1; width: 100%; }

/* Big photo panel with the signature rounded corner */
.panel-photo {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: var(--panel-h);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0 var(--radius-lg) 0 0;
    padding: 20px 0 0 30px;
}
.panel-photo.corner-tr { border-radius: 0 var(--radius-lg) 0 0; }
.panel-photo.corner-br { border-radius: 0 0 var(--radius-lg) 0; }
.panel-photo.corner-tl-br { border-radius: var(--radius-lg) 0 var(--radius-lg) 0; }

.panel-photo .panel-logo { width: 80px; }

/* Split row: two panels side by side */
.split {
    display: flex;
    flex-direction: row;
    gap: 0;
    padding: 20px;
}
.split > .col-text  { flex: 1 1 51%; max-width: 51%; padding-left: 20px; display: flex; flex-direction: column; }
.split > .col-photo { flex: 1 1 49%; max-width: 49%; }
.split.reverse > .col-text  { padding-left: 0; padding-right: 20px; }
/* 50/50 column (Visit Us block) */
.split > .half { flex: 1 1 50%; max-width: 50%; }

.split.flush { padding: 0; }

/* --------------------------------------------------------------------------
   4. Typography helpers
   -------------------------------------------------------------------------- */
.display-xl {
    color: var(--heading);
    font-family: var(--font-heading);
    font-size: 150px;
    letter-spacing: 5px;
    line-height: 1;
    margin: 0 auto 20px;
    max-width: 70%;
}

.display-lg {
    color: var(--heading);
    font-family: var(--font-heading);
    font-size: 120px;
    letter-spacing: 5px;
    line-height: 1;
    margin: 0 0 30px;
}

.script {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font-script);
    font-size: 44px;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0;
    transform: rotate(-15deg) translateX(146px);
    position: relative;
    z-index: 2;
}

.lead {
    margin: -20px auto 0;
    max-width: 90%;
    font-size: 17px;
    line-height: 1.8;
}

/* Category / quick links list */
.link-list {
    margin-top: -20px;
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.7;
    text-transform: uppercase;
}
.link-list a { display: block; color: var(--heading); }
.link-list a:hover { color: var(--accent); }

/* Buttons — theme uses a transparent gold-bordered button that shrinks on hover */
.btn {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 0;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1.5em;
    text-transform: uppercase;
    padding: 20px 30px 18px;
    cursor: pointer;
    transition: transform .3s ease, background-color .3s ease, color .3s ease;
}
.btn:hover, .btn:focus { transform: scale(.9); color: #fff; }

.btn-row { margin-top: 40px; }

/* --------------------------------------------------------------------------
   5. Header — floating hamburger
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 900;
    display: flex;
    justify-content: flex-end;
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border: 0;
    padding: 13px 20px 20px;
    cursor: pointer;
    line-height: 0;
}
.menu-toggle img { width: 25px; }
.menu-toggle:hover { opacity: .8; }

/* --------------------------------------------------------------------------
   6. Fullscreen menu overlay
   -------------------------------------------------------------------------- */
.fullmenu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
    overflow-y: auto;
}
.fullmenu.is-open { opacity: 1; visibility: visible; }

/* Rotating background images behind menu links */
.fullmenu__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.fullmenu__bg-item {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
    opacity: 0;
    transition: opacity .5s ease;
}
.fullmenu__bg-item.is-active { opacity: 1; }
.fullmenu__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .15);
}

.fullmenu__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.fullmenu__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 15vh;
    padding: 30px 60px 0;
}
.fullmenu__top .logo img { width: 70px; }

.fullmenu__close {
    background: none;
    border: 0;
    cursor: pointer;
    padding: 20px 0 0;
    line-height: 0;
}
.fullmenu__close img { width: 26px; }
.fullmenu__close:hover { opacity: .7; }

/* Boxed row: bam pashe nav, dan pashe niche contact info */
.fullmenu__body {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 85vh;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
}
.fullmenu__body > nav {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
}
.fullmenu__nav { width: 100%; margin-top: -200px; text-align: left; }
.fullmenu__nav a {
    display: inline-block;
    color: #fff;
    font-family: var(--font-body);
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1.5em;
    text-transform: uppercase;
}
.fullmenu__nav a:hover { color: var(--accent); }

.fullmenu__foot {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 30px;
    padding: 0 0 80px;
}
/* Contact column content onujayi, address column baki jayga ney */
.fullmenu__foot > div:first-child { flex: 0 0 auto; }
.fullmenu__foot > div:last-child  { flex: 1 1 auto; min-width: 0; }
.fullmenu__foot h3 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.fullmenu__foot li { line-height: 1.9; }

/* --------------------------------------------------------------------------
   7. Home — hero
   -------------------------------------------------------------------------- */
/* Shudhu direct child — na hole col-text er bhitorer .frame o 50% hoye jay */
.hero { padding: 20px; }
.hero > .frame { flex: 1 1 50%; max-width: 50%; }
.hero > .col-photo { flex: 1 1 50%; max-width: 50%; }

/* Logo chhoto-boro dutoi hote pare — width diye size, max-height diye choura logo control */
.hero__icon { width: 380px; max-width: 85%; height: auto; max-height: 150px; object-fit: contain; margin: 60px auto 30px; display: block; }

/* --------------------------------------------------------------------------
   8. Venue cards (Sushi Grand / Omakase / Teppanyaki)
   -------------------------------------------------------------------------- */
.venues {
    display: flex;
    flex-direction: row;
    gap: 0;
    padding: 100px 0;
    max-width: 1140px;
    margin: 0 auto;
}
.venue-card {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    border: 1px solid var(--line);
    padding: 10px;
    margin-right: 10px;
    display: flex;
}
.venue-card:last-child { margin-right: 0; }

.venue-card__inner {
    border: 1px solid var(--line);
    padding: 60px 40px;
    width: 100%;
    text-align: center;
}
.venue-card__inner img {
    width: 100%;
    border-radius: 100px 100px 0 100px;
    margin-bottom: 30px;
    display: block;
}
.venue-card__inner h2 {
    color: var(--heading);
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1.3;
}
.venue-card__inner p { margin-top: 10px; }

/* --------------------------------------------------------------------------
   9. Visit Us block
   -------------------------------------------------------------------------- */
.visit__grid {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 80%;
    margin: 0 auto;
    text-align: left;
    align-items: flex-start;
}
.visit__thumb { flex: 0 0 auto; }
.visit__thumb img { border-radius: 100px; }
.visit__info { padding-left: 40px; }
.visit__info h3 {
    color: var(--heading);
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.visit__info h3 + p,
.visit__info ul { margin-bottom: 0; }
.visit__info .mt { margin-top: 30px; }
.visit .display-lg { max-width: 80%; margin: 0 auto 40px; }

/* --------------------------------------------------------------------------
   10. Food menu list
   -------------------------------------------------------------------------- */
.food-menu { width: 100%; text-align: left; padding: 0 20px; }

.food-item { padding: 0 0 10px; }
.food-item + .food-item { margin-top: 4px; }

.food-item__top {
    display: table;
    width: 100%;
    table-layout: auto;
}
.food-item__title {
    display: table-cell;
    width: 1%;
    white-space: nowrap;
    padding-right: 5px;
    color: var(--heading);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 2em;
    letter-spacing: 1px;
}
.food-item__line {
    display: table-cell;
    width: 98%;
    height: 3px;
    position: relative;
    bottom: 13px;
    border-bottom: 2px dotted #000;
}
.food-item__price {
    display: table-cell;
    width: 1%;
    white-space: nowrap;
    padding-left: 12px;
    color: var(--heading);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
}
.food-item__desc {
    margin-top: -5px;
    padding: 5px 60px 0 0;
    color: rgba(255, 255, 255, .65);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
}

.menu-section { padding: 20px; }
.menu-section .display-lg { margin-bottom: 30px; }

/* --------------------------------------------------------------------------
   11. Booking form
   -------------------------------------------------------------------------- */
.booking { padding: 20px; }
.booking .col-text { flex: 1 1 50%; max-width: 50%; padding-left: 0; }
.booking .col-map  { flex: 1 1 50%; max-width: 50%; position: relative; min-height: 700px; }

.booking-form {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 30px;
}
.booking-form .field { margin-bottom: 22px; }
.booking-form .field.full { grid-column: 1 / -1; }

.booking-form label {
    display: block;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text);
}
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form select,
.booking-form textarea {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    padding: 10px 0;
    outline: none;
    transition: border-color .3s ease;
}
.booking-form textarea { min-height: 90px; resize: vertical; }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { border-bottom-color: var(--accent); }
.booking-form select option { background: #111; color: #fff; }
.booking-form input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .6; cursor: pointer; }

.form-note {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding: 16px 20px;
    border: 1px solid var(--line);
    font-size: 15px;
}
.form-note.is-error { border-color: #a05353; color: #e2a0a0; }
.form-note.is-success { border-color: var(--accent); color: var(--accent); }

.booking .map-wrap {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}
.booking .map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(1) grayscale(1) contrast(.85) brightness(.9);
}
.booking .map-logo {
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    z-index: 3;
}
.booking .map-logo img { width: 100px; }

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer { border-top: 0; }

.footer-hero { padding: 10px; }
.footer-hero__frame { border: 1px solid var(--line); padding: 10px; }
.footer-hero__inner {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 400px;
    padding: 40px 40px 0 0;
    background-position: 50% 50%;
    background-size: cover;
}
.footer-hero__inner .icon { width: 50px; margin-right: 17px; }
.footer-hero__inner .logo { width: 82px; }

.footer-hours {
    display: flex;
    flex-direction: row;
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 0;
}
.footer-hours__col {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    border-right: 1px solid var(--line);
    padding: 40px 30px;
    text-align: center;
}
.footer-hours__col:last-child { border-right: 0; }
.footer-hours__col h3 {
    color: var(--heading);
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1.3;
}
.footer-hours__col p { margin-top: 10px; }

.footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 0 60px;
    border-top: 1px solid var(--line);
}
.footer-bottom__social { flex: 0 0 35%; max-width: 35%; }
.footer-bottom__logo   { flex: 0 0 30%; max-width: 30%; text-align: center; }
.footer-bottom__logo img { width: 65px; }
.footer-bottom__copy   { flex: 0 0 35%; max-width: 35%; text-align: right; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

.social-inline { display: flex; flex-wrap: wrap; gap: 0 22px; }
.social-inline a {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Back to top */
.to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 800;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .6);
    border: 1px solid var(--line);
    color: var(--accent);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    cursor: pointer;
}
.to-top.is-visible { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--accent); color: #000; }

/* --------------------------------------------------------------------------
   13. Reveal on scroll
   -------------------------------------------------------------------------- */
/* JS na thakle content shob shomoy dekha jabe — tai hide only when .js ache */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .js .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* 404 */
.notfound { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 20px; }
.notfound .display-lg { max-width: 100%; }

/* --------------------------------------------------------------------------
   14. Responsive — tablet (<=1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    :root { --panel-h: 450px; --radius-lg: 150px; }

    .display-xl { font-size: 100px; letter-spacing: 3px; }
    .display-lg { font-size: 80px;  letter-spacing: 3px; }
    .script { font-size: 32px; transform: rotate(-15deg) translateX(85px); }
    .link-list { font-size: 26px; margin-top: 0; }

    .hero__icon { width: 300px; max-height: 120px; margin-top: 45px; }
    .panel-pattern { padding: 80px 20px; }
    .panel-photo { min-height: 400px; padding: 10px 0 0 20px; }
    .panel-photo .panel-logo { width: 65px; }

    .split > .col-text  { flex-basis: 52%; max-width: 52%; }
    .split > .col-photo { flex-basis: 48%; max-width: 48%; }

    .venues { padding: 80px 30px; }
    .venue-card__inner { padding: 40px 20px; }
    .venue-card__inner h2 { font-size: 18px; }
    .venue-card__inner p { font-size: 14px; }
    .venue-card__inner img { border-radius: 60px 60px 0 60px; }

    .visit__grid { width: 95%; }

    .food-item__title, .food-item__price { font-size: 18px; }
    .food-item__desc { padding: 5px 40px 0 0; }

    .fullmenu__top { padding: 30px 30px 0; }
    .fullmenu__top .logo img { width: 65px; }
    .fullmenu__body { padding: 0 30px; }
    .fullmenu__nav a { font-size: 32px; }
    .fullmenu__foot { flex-direction: column; align-items: flex-end; justify-content: flex-end; text-align: right; gap: 24px; padding: 0 0 60px; }
    .fullmenu__foot > div:first-child,
    .fullmenu__foot > div:last-child { flex: 0 0 auto; }

    .footer-hero__inner { min-height: 250px; }
    .footer-hero__inner .icon { width: 35px; }
    .footer-hero__inner .logo { width: 65px; }
    .footer-hours { padding: 40px 20px; }
    .footer-hours__col { padding: 30px; }
    .footer-hours__col h3 { font-size: 22px; }
    .footer-hours__col p { font-size: 15px; }
    .footer-bottom { padding: 20px 20px 40px; }
    .footer-bottom__social { flex-basis: 40%; max-width: 40%; }
    .footer-bottom__logo { flex-basis: 20%; max-width: 20%; }
    .footer-bottom__copy { flex-basis: 40%; max-width: 40%; font-size: 11px; }
    .social-inline a { font-size: 11px; }

    .booking .col-map { min-height: 480px; }
}

/* --------------------------------------------------------------------------
   15. Responsive — mobile (<=767px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    :root { --panel-h: 450px; }

    body { font-size: 16px; }

    .display-xl { font-size: 90px; max-width: 100%; }
    .display-lg { font-size: 70px; }
    .script { font-size: 28px; transform: rotate(-15deg) translateX(60px); }
    .link-list { font-size: 24px; }
    .lead { max-width: 100%; }

    /* Every split becomes a single column, photo first / text after */
    .split { flex-direction: column; padding: 10px; margin-bottom: 0; }
    .split > .col-text,
    .split > .col-photo,
    .split > .half,
    .hero > .frame,
    .hero > .col-photo,
    .booking > .col-text,
    .booking > .col-map {
        flex: 1 1 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    /* Mobile e shob kichu DOM order onujayi upor-niche boshbe (original theme er motoi) */
    .split > .col-text { margin-top: 40px; }
    .split > .col-photo:last-child { margin-top: 40px; }

    .panel-pattern { min-height: 450px; padding: 60px 16px; }
    .panel-photo { min-height: 400px; border-radius: 0 var(--radius-md) 0 0; padding: 0; }
    .panel-photo.corner-br { border-radius: 0 0 var(--radius-md) 0; }
    .panel-photo.corner-tl-br { border-radius: var(--radius-md) 0 var(--radius-md) 0; }
    .panel-photo .panel-logo { width: 55px; margin: 16px 0 0 16px; }
    .hero__icon { width: 230px; max-height: 90px; margin-top: 30px; }

    .venues { flex-direction: column; padding: 40px 16px; }
    .venue-card { flex: 1 1 100%; max-width: 100%; margin: 0 0 20px; }
    .venue-card:last-child { margin-bottom: 0; }
    .venue-card__inner { padding: 30px 20px; }

    .visit__grid { flex-direction: column; width: 100%; text-align: center; align-items: center; }
    .visit__thumb { margin-bottom: 24px; }
    .visit__info { padding-left: 0; text-align: center; }
    .visit .display-lg { max-width: 100%; }

    .food-item__desc { padding: 5px 0 0; }
    .menu-section { padding: 10px; }

    .fullmenu__top { padding: 10px 20px 0; }
    .fullmenu__top .logo img { width: 55px; }
    .fullmenu__close { padding: 10px 0 0; }
    .fullmenu__close img { width: 20px; }
    .fullmenu__body { flex-direction: column; min-height: auto; padding: 40px 20px; }
    .fullmenu__body > nav { flex: 1 1 auto; max-width: 100%; }
    .fullmenu__nav { margin-top: 0; }
    .fullmenu__nav a { font-size: 26px; }
    .fullmenu__foot {
        flex: 1 1 auto;
        max-width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        gap: 26px;
        padding: 50px 0 40px;
    }
    .fullmenu__foot > div:first-child,
    .fullmenu__foot > div:last-child { flex: 0 0 auto; width: 100%; }
    .fullmenu__foot h3 { margin-bottom: 10px; }

    .booking { padding: 10px; }
    .booking .col-text, .booking .col-map { flex: 1 1 100%; max-width: 100%; }
    .booking .col-map { min-height: 340px; margin-top: 30px; }
    .booking .map-wrap { border-radius: var(--radius-md) var(--radius-md) 0 0; }
    .booking .map-logo { top: 30px; }
    .booking .map-logo img { width: 70px; }
    .booking-form { grid-template-columns: minmax(0, 1fr); gap: 0; }

    .footer-hero__inner { min-height: 300px; padding: 30px 20px 0 0; }
    .footer-hours { flex-direction: column; padding: 20px; }
    .footer-hours__col {
        flex: 1 1 100%;
        max-width: 100%;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 28px 20px;
    }
    .footer-hours__col:last-child { border-bottom: 0; }
    .footer-bottom { flex-wrap: wrap; padding: 40px 20px 60px; text-align: center; }
    .footer-bottom__logo { order: -1; flex: 1 1 100%; max-width: 100%; padding-bottom: 20px; }
    .footer-bottom__social { flex: 1 1 100%; max-width: 100%; margin-bottom: 14px; }
    .social-inline { justify-content: center; }
    .footer-bottom__copy { flex: 1 1 100%; max-width: 100%; text-align: center; }
}

@media (max-width: 420px) {
    .display-xl { font-size: 68px; }
    .display-lg { font-size: 54px; }
    .link-list { font-size: 20px; }
    .script { transform: rotate(-15deg) translateX(40px); }
}
