:root {
    --ink: #14110e;
    --night: #201813;
    --coal: #2c2721;
    --cream: #fff8ed;
    --paper: #f7efe2;
    --copper: #b76a2c;
    --gold: #d7a848;
    --sage: #6e7d55;
    --red: #8f2f22;
    --muted: #7b7164;
    --line: rgba(215, 168, 72, .32);
    --shadow: 0 24px 70px rgba(20, 17, 14, .22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Segoe UI", Candara, "Trebuchet MS", Arial, sans-serif;
    line-height: 1.6;
}

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

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

.topbar {
    position: fixed;
    z-index: 20;
    top: 12px;
    left: 50%;
    width: min(1180px, calc(100% - 28px));
    min-height: 78px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: var(--cream);
    background: rgba(20, 17, 14, .78);
    border: 1px solid rgba(255, 248, 237, .14);
    border-radius: 8px;
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 250px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: var(--night);
    background: linear-gradient(135deg, var(--gold), #f4d88f);
    border-radius: 50%;
    font-weight: 900;
}

.logo-mark {
    overflow: hidden;
    background: #fff;
    border: 2px solid rgba(215, 168, 72, .7);
}

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

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--gold);
}

.brand strong {
    font-size: 25px;
    line-height: 1.05;
}

.brand small {
    font-size: 13px;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: rgba(255, 248, 237, .86);
    font-weight: 650;
}

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

.social-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 108px;
}

.nav-action,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 800;
}

.nav-action,
.button.primary {
    color: #16110c;
    background: var(--gold);
    box-shadow: 0 12px 30px rgba(215, 168, 72, .25);
}

.whatsapp-only,
.instagram-only {
    min-width: 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 16px;
    box-shadow: none;
}

.whatsapp-only img,
.instagram-only img {
    width: 39px;
    height: 39px;
    object-fit: contain;
    border-radius: 14px;
    transition: transform .18s ease, filter .18s ease;
}

.whatsapp-only:hover img,
.instagram-only:hover img {
    transform: translateY(-2px) scale(1.04);
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .26));
}

.icon-button {
    gap: 9px;
}

.icon-button img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    border-radius: 7px;
}

.button.secondary {
    color: var(--cream);
    background: rgba(255, 248, 237, .12);
    border: 1px solid rgba(255, 248, 237, .28);
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--cream);
    background: var(--night);
}

.hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 900ms ease, transform 5200ms ease;
}

.hero-slides img.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 17, 14, .9), rgba(20, 17, 14, .58) 42%, rgba(20, 17, 14, .12)),
        linear-gradient(0deg, rgba(20, 17, 14, .82), transparent 48%);
}

.hero-content {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 160px 0 84px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    overflow-wrap: normal;
    word-break: normal;
}

p,
a,
strong,
small,
span {
    overflow-wrap: break-word;
}

h1,
h2,
.brand strong,
.footer strong {
    font-family: Georgia, "Times New Roman", serif;
}

h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(44px, 7vw, 92px);
    line-height: .95;
    letter-spacing: 0;
}

.hero-content > p:not(.eyebrow) {
    max-width: 640px;
    margin: 22px 0 0;
    color: rgba(255, 248, 237, .88);
    font-size: 20px;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-badges span {
    padding: 8px 12px;
    color: var(--cream);
    background: rgba(255, 248, 237, .12);
    border: 1px solid rgba(255, 248, 237, .22);
    border-radius: 999px;
    font-weight: 800;
}

.quick-info {
    width: min(1180px, calc(100% - 32px));
    margin: -36px auto 0;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: var(--line);
}

.quick-info a {
    min-height: 118px;
    padding: 24px;
    background: var(--cream);
    transition: background .2s ease, transform .2s ease;
}

.quick-info a:hover {
    background: #fffaf1;
    transform: translateY(-2px);
}

.quick-info span {
    display: block;
    color: var(--muted);
    font-weight: 800;
}

.quick-info strong {
    display: block;
    margin-top: 6px;
    font-size: 18px;
}

.section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 86px 0;
}

.subpage {
    padding-top: 96px;
}

.subpage-hero {
    padding-bottom: 52px;
}

.subpage-hero h1 {
    color: var(--ink);
    max-width: 900px;
}

.subpage-hero p:not(.eyebrow) {
    max-width: 900px;
    color: #4f473f;
    font-size: 19px;
}

.seo-content {
    padding: 48px;
    background: #fffaf1;
    border: 1px solid rgba(183, 106, 44, .2);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(20, 17, 14, .08);
}

.seo-content h2,
.seo-content h3 {
    margin: 0 0 12px;
}

.seo-content p {
    margin: 0 0 24px;
    color: #4f473f;
}

.menu-page-section {
    margin-bottom: 76px;
}

.gallery-page-section {
    padding-top: 20px;
}

.about {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 42px;
    align-items: start;
}

.section-copy h2,
.section-heading h2,
.contact h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
}

.section-copy p:not(.eyebrow),
.contact p {
    color: #4f473f;
    font-size: 18px;
}

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

.feature {
    min-height: 190px;
    padding: 24px;
    color: var(--cream);
    background: linear-gradient(155deg, var(--night), #3a2418);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.feature h3,
.menu-card h3 {
    margin: 0 0 8px;
}

.feature p,
.menu-card p {
    margin: 0;
}

.dark-section {
    width: 100%;
    max-width: none;
    padding: 86px max(16px, calc((100vw - 1180px) / 2));
    color: var(--cream);
    background:
        linear-gradient(180deg, rgba(32, 24, 19, .96), rgba(20, 17, 14, .98)),
        url("images/restaurant-front.jpeg") center/cover fixed;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-heading-stacked {
    display: block;
    max-width: 860px;
}

.section-heading-stacked p:not(.eyebrow) {
    margin: 14px 0 0;
    color: rgba(255, 248, 237, .78);
    font-size: 18px;
}

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

.menu-card {
    overflow: hidden;
    background: rgba(255, 248, 237, .08);
    border: 1px solid rgba(215, 168, 72, .38);
    border-radius: 8px;
}

.menu-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.menu-card div {
    padding: 18px;
}

.menu-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.menu-card p {
    color: rgba(255, 248, 237, .78);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 180px;
    gap: 14px;
}

.gallery a,
.gallery-item {
    grid-column: span 4;
    overflow: hidden;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(20, 17, 14, .13);
    cursor: zoom-in;
}

.gallery a:first-child,
.gallery-item:first-child {
    grid-column: span 8;
    grid-row: span 2;
}

.gallery img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.gallery a:hover img,
.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-slider {
    position: relative;
}

.gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 38%);
    gap: 16px;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.gallery-track a {
    height: 330px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(20, 17, 14, .13);
    scroll-snap-align: start;
}

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

.slider-btn {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
    color: var(--cream);
    background: rgba(20, 17, 14, .78);
    border: 1px solid rgba(255, 248, 237, .2);
    border-radius: 50%;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.slider-btn.prev {
    left: -12px;
}

.slider-btn.next {
    right: -12px;
}

.contact {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 32px;
    align-items: stretch;
}

.contact-card {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 42px;
    color: var(--cream);
    background:
        radial-gradient(circle at 18% 100%, rgba(215, 168, 72, .16), transparent 34%),
        linear-gradient(145deg, #1f1712, #2b1d16);
    border-radius: 8px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.contact p {
    color: rgba(255, 248, 237, .82);
}

.contact-card a {
    color: rgba(255, 248, 237, .82);
    font-size: 18px;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-card strong,
.contact-phone {
    color: var(--gold);
    font-size: 20px;
    font-weight: 900;
}

.contact iframe {
    width: 100%;
    min-height: 430px;
    border: 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.floating-whatsapp {
    position: fixed;
    z-index: 30;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    color: #fff;
    background: #1f9d55;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 16px 38px rgba(31, 157, 85, .35);
}

.floating-whatsapp img {
    width: 38px;
    height: 38px;
    margin-right: 0;
    border-radius: 10px;
}

.ghost-scroll-nav {
    position: fixed;
    z-index: 35;
    right: 14px;
    top: 48%;
    display: grid;
    gap: 8px;
    transform: translateY(-50%);
}

.ghost-scroll-nav a,
.ghost-scroll-nav button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: rgba(255, 248, 237, .76);
    background: rgba(20, 17, 14, .2);
    border: 1px solid rgba(255, 248, 237, .24);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    font-size: 22px;
    font-weight: 900;
    font-family: inherit;
    cursor: pointer;
}

.ghost-scroll-nav a:hover,
.ghost-scroll-nav button:hover {
    color: var(--gold);
    background: rgba(20, 17, 14, .36);
}

.mobile-bottom-nav {
    display: none;
}

.lightbox {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 7, 6, .88);
}

.lightbox.is-open {
    display: flex;
}

.lightbox img {
    max-width: min(1100px, 86vw);
    max-height: 86vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, .45);
}

.lightbox-close,
.lightbox-arrow {
    position: absolute;
    display: grid;
    place-items: center;
    color: var(--cream);
    background: rgba(20, 17, 14, .82);
    border: 1px solid rgba(255, 248, 237, .22);
    cursor: pointer;
}

.lightbox-close {
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 32px;
}

.lightbox-arrow {
    top: 50%;
    width: 56px;
    height: 56px;
    transform: translateY(-50%);
    border-radius: 50%;
    font-size: 42px;
    line-height: 1;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.desktop-only {
    display: inline-flex;
}

.footer {
    display: grid;
    justify-content: center;
    gap: 6px;
    padding: 32px 16px 80px;
    color: var(--cream);
    background: var(--ink);
    text-align: center;
}

.footer span,
.footer a {
    color: rgba(255, 248, 237, .68);
}

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

.admin-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(215, 168, 72, .22), transparent 34%),
        linear-gradient(135deg, #f7efe2, #efe0ca 48%, #1f1712 48%, #2c211b);
}

.admin-shell {
    width: min(1120px, calc(100% - 28px));
    margin: 0 auto;
    padding: 32px 0;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 22px;
}

.admin-hero {
    padding: 22px;
    color: var(--cream);
    background: rgba(20, 17, 14, .88);
    border: 1px solid rgba(255, 248, 237, .12);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.admin-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-header h1 {
    color: inherit;
    font-size: clamp(30px, 5vw, 56px);
    margin: 0;
}

.admin-header .button.secondary {
    color: var(--ink);
    background: #fffaf1;
    border-color: rgba(44, 39, 33, .18);
}

.admin-panel {
    margin-bottom: 18px;
    padding: 22px;
    background: rgba(255, 250, 241, .94);
    border: 1px solid rgba(183, 106, 44, .22);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(20, 17, 14, .08);
}

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

.admin-grid .full,
.admin-list {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 7px;
    color: #3d342c;
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(44, 39, 33, .18);
    border-radius: 6px;
    font: inherit;
}

textarea {
    min-height: 96px;
    resize: vertical;
}

.admin-list {
    display: grid;
    gap: 12px;
}

.admin-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 10px;
    align-items: end;
    padding: 12px;
    background: #f8f0e4;
    border-radius: 8px;
}

.feature-row {
    grid-template-columns: .8fr 1.6fr;
}

.menu-row {
    grid-template-columns: .75fr 1.45fr 1fr;
}

.admin-savebar {
    position: sticky;
    bottom: 14px;
    z-index: 5;
    display: flex;
    justify-content: flex-end;
    padding: 14px;
    background: rgba(255, 250, 241, .88);
    border: 1px solid rgba(183, 106, 44, .2);
    border-radius: 10px;
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 42px rgba(20, 17, 14, .12);
}

.notice {
    padding: 12px 14px;
    margin-bottom: 18px;
    color: #184d2d;
    background: #dff3e5;
    border-radius: 6px;
    font-weight: 800;
}

.login-card {
    width: min(430px, calc(100% - 30px));
    margin: 9vh auto;
}

.login-screen {
    display: grid;
    align-items: center;
}

.login-panel {
    text-align: center;
}

.login-logo {
    width: 86px;
    height: 86px;
    margin: 0 auto 12px;
}

.login-panel h1 {
    margin-top: 0;
}

@media (max-width: 900px) {
    .topbar {
        position: fixed;
        top: 10px;
        min-height: 62px;
        grid-template-columns: 1fr auto;
        gap: 8px 10px;
        padding: 9px;
    }

    .nav {
        grid-column: 1 / -1;
        grid-row: 2;
        display: flex;
        justify-content: flex-start;
        gap: 6px;
        overflow-x: auto;
        padding: 1px 1px 0;
        scrollbar-width: none;
    }

    .nav::-webkit-scrollbar {
        display: none;
    }

    .nav a {
        flex: 0 0 auto;
        padding: 7px 9px;
        color: rgba(255, 248, 237, .92);
        background: rgba(255, 248, 237, .1);
        border: 1px solid rgba(255, 248, 237, .16);
        border-radius: 999px;
        font-size: 11px;
        line-height: 1;
    }

    .social-actions {
        grid-column: 2;
        grid-row: 1;
        min-width: auto;
        gap: 6px;
    }

    .nav-action {
        min-width: 34px;
        width: 34px;
        height: 34px;
        padding: 0;
        border-radius: 12px;
        background: transparent;
        box-shadow: none;
    }

    .nav-action span {
        display: none;
    }

    .nav-action img {
        width: 31px;
        height: 31px;
    }

    .quick-info,
    .about,
    .feature-grid,
    .menu-grid,
    .contact,
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .gallery,
    .gallery-item,
    .gallery-item:first-child {
        display: block;
        grid-column: auto;
        grid-row: auto;
    }

    .gallery {
        columns: 1;
    }

    .gallery-item {
        width: 100%;
        height: auto;
        margin-bottom: 14px;
    }

    .lightbox {
        padding: 14px;
    }

    .lightbox img {
        max-width: 92vw;
        max-height: 78vh;
    }

    .lightbox-arrow {
        width: 46px;
        height: 46px;
        font-size: 34px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .desktop-only,
    .floating-whatsapp {
        display: none;
    }

    .admin-row {
        grid-template-columns: 1fr;
    }

    .mobile-bottom-nav {
        position: fixed;
        z-index: 40;
        left: 14px;
        right: 14px;
        bottom: max(6px, env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        padding: 5px;
        background: rgba(255, 255, 255, .94);
        border: 1px solid rgba(20, 17, 14, .08);
        border-radius: 15px;
        box-shadow: 0 12px 32px rgba(20, 17, 14, .2);
        backdrop-filter: blur(14px);
    }

    .mobile-bottom-nav a {
        display: grid;
        place-items: center;
        gap: 3px;
        min-height: 44px;
        color: #273040;
        font-size: 10px;
        font-weight: 900;
    }

    .mobile-bottom-nav span,
    .mobile-bottom-nav img {
        display: grid;
        place-items: center;
        width: 28px;
        height: 28px;
        color: #fff;
        background: var(--red);
        border-radius: 10px;
        font-size: 19px;
        line-height: 1;
    }

    .mobile-bottom-nav .middle {
        color: #15944a;
    }

    .mobile-bottom-nav .middle img {
        width: 30px;
        height: 30px;
        background: transparent;
        border-radius: 10px;
    }

    .mobile-bottom-nav .instagram-mobile {
        color: #c13584;
    }

    .mobile-bottom-nav .instagram-mobile img {
        width: 30px;
        height: 30px;
        object-fit: cover;
        background: transparent;
        border-radius: 10px;
    }

    .mobile-bottom-nav a:last-child span {
        background: #f5aa20;
    }

    body {
        padding-bottom: 68px;
    }
}

@media (max-width: 560px) {
    .topbar {
        top: 8px;
        width: calc(100% - 18px);
        border-radius: 13px;
    }

    .brand {
        min-width: 0;
        gap: 8px;
    }

    .brand strong {
        font-size: 21px;
    }

    .brand small {
        font-size: 11px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .nav-action {
        min-height: 36px;
        padding: 0;
    }

    .social-actions {
        gap: 5px;
    }

    .hero-content {
        padding-top: 120px;
        padding-bottom: 84px;
    }

    .hero h1 {
        font-size: clamp(34px, 12vw, 54px);
        line-height: .98;
    }

    .subpage {
        padding-top: 132px;
    }

    .subpage-hero {
        padding-bottom: 34px;
    }

    .subpage-hero h1 {
        max-width: 100%;
        font-size: clamp(30px, 9.4vw, 44px);
        line-height: 1.08;
    }

    .subpage-hero p:not(.eyebrow) {
        font-size: 16px;
        line-height: 1.6;
    }

    .section-copy h2,
    .section-heading h2,
    .contact h2 {
        font-size: clamp(28px, 8.5vw, 40px);
        line-height: 1.08;
    }

    .hero-content > p:not(.eyebrow) {
        font-size: 16px;
        line-height: 1.55;
    }

    .hero-badges {
        gap: 8px;
    }

    .hero-badges span {
        padding: 7px 10px;
        font-size: 14px;
    }

    .ghost-scroll-nav {
        right: 8px;
        top: 52%;
        gap: 6px;
    }

    .ghost-scroll-nav a,
    .ghost-scroll-nav button {
        width: 34px;
        height: 34px;
        font-size: 18px;
        background: rgba(20, 17, 14, .14);
    }

    .quick-info {
        margin-top: 0;
    }

    .section {
        padding: 58px 0;
    }
}
