/* =========================================================
   SICELLO
   Main Stylesheet
   ========================================================= */


/* =========================================================
   THEME
   ========================================================= */

:root {
    --bg: #f4efe6;
    --dark: #171713;
    --olive: #5b5a3f;
    --cream: #f8f3e9;
    --gold: #b99a5b;
    --wine: #74171b;
    --white: #ffffff;

    --container: 1180px;
}


/* =========================================================
   RESET / BASE
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--container), 92%);
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 28px 0;
    color: var(--white);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.7;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-block;
    padding: 15px 26px;
    border: 0;
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: #a88648;
}

.btn-light {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
}

.btn-light:hover {
    background: var(--white);
    color: var(--dark);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--white);

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.48),
            rgba(0, 0, 0, 0.58)
        ),
        url("../images/hero.jpg");

    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 1100px;
    max-width: 92vw;
    padding-top: 70px;
}

.hero-eyebrow {
    margin: 0 0 24px;
    color: #e3d6bd;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 28px;
    max-width: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 4.2vw, 68px);
    font-weight: 400;
    line-height: 0.98;
}

.hero h1 span {
    display: block;
    white-space: nowrap;
}

.hero-text {
    max-width: 760px;
    margin: 0 0 38px;
    color: rgba(255, 255, 255, 0.86);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* =========================================================
   SHARED SECTION ELEMENTS
   ========================================================= */

.section-eyebrow {
    margin: 0 0 22px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   STORY
   ========================================================= */

.story {
    padding: 90px 0 110px;
    background: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 90px;
}

.story-image {
    overflow: hidden;
}

.story-image img {
    display: block;
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.story-content {
    transform: translateY(-15px);
}

.story-content h2 {
    margin: 0 0 30px;
    color: var(--dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 68px);
    font-weight: 400;
    line-height: 1.05;
}

.story-content p {
    max-width: 540px;
    color: #55534d;
    font-size: 17px;
    line-height: 1.8;
}

.story-content .story-lead {
    color: var(--dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.65;
}


/* =========================================================
   FEATURED MENU
   ========================================================= */

.featured-menu {
    padding: 110px 0 120px;
    background: var(--dark);
    color: var(--white);
}

.menu-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 55px;
}

.menu-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 400;
    line-height: 1.05;
}

.menu-link {
    margin-bottom: 8px;
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-card {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.menu-card-image {
    overflow: hidden;
    margin-bottom: 24px;
}

.menu-card-image img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.035);
}

.menu-card-content {
    padding-right: 10px;
}

.menu-item-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
}

.menu-item-title h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
}

.menu-item-title span {
    color: var(--gold);
    font-size: 16px;
    white-space: nowrap;
}

.menu-card p {
    max-width: 340px;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery {
    padding: 95px 0 125px;
    background: var(--cream);
}

.gallery-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.gallery-heading h2 {
    margin: 0;
    color: var(--dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 400;
    line-height: 1.05;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
    grid-template-rows: 310px 310px;
    gap: 18px;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    background: #ddd6ca;
}

.gallery-item-large {
    grid-row: 1 / span 2;
}

.gallery-item-wide {
    grid-column: span 1;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.035);
}


/* =========================================================
   RESERVATIONS
   ========================================================= */

.reservations {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 720px;
    background: var(--wine);
    color: var(--white);
}

.reservations-image {
    overflow: hidden;
}

.reservations-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 720px;
    object-fit: cover;
}

.reservations-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 10%;
}

.reservations-content .section-eyebrow {
    color: #d6b46f;
}

.reservations-content h2 {
    max-width: 560px;
    margin: 0 0 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 4vw, 68px);
    font-weight: 400;
    line-height: 1.05;
}

.reservations-lead {
    max-width: 560px;
    margin: 0 0 42px;
    color: rgba(255, 255, 255, 0.82);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.7;
}

.reservation-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 42px;
}

.reservation-details h3 {
    margin: 0 0 15px;
    color: #d6b46f;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.reservation-details p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
}

.reservation-button {
    align-self: flex-start;
    padding: 17px 32px;
    background: var(--white);
    color: var(--dark);
}

.reservation-button:hover {
    background: #e9dfcf;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 85px 0 30px;
    background: #11110e;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.75fr 1fr 0.75fr;
    gap: 60px;
    padding-bottom: 70px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 6px;
}

.footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h3 {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.8;
}

.footer-column a {
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   TABLET / NARROW DESKTOP
   ========================================================= */

@media (max-width: 1100px) {

    .reservation-details {
        gap: 30px;
    }

    .reservations-content {
        padding: 70px 7%;
    }

    .footer-grid {
        gap: 40px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    /* HEADER */

    .site-header {
        padding: 20px 0;
    }

    .main-nav {
        display: none;
    }

    .header-inner .btn-outline {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: 780px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: clamp(38px, 10.5vw, 56px);
    }

    .hero-text {
        font-size: 18px;
    }


    /* STORY */

    .story {
        padding: 75px 0;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .story-content {
        transform: none;
    }

    .story-image img {
        height: 480px;
    }

    .story-content h2 {
        font-size: 44px;
    }


    /* MENU */

    .featured-menu {
        padding: 80px 0;
    }

    .menu-heading {
        display: block;
    }

    .menu-link {
        margin-top: 25px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .menu-card-image img {
        height: 420px;
    }


    /* GALLERY */

    .gallery {
        padding: 75px 0;
    }

    .gallery-heading {
        margin-bottom: 35px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 16px;
    }

    .gallery-item,
    .gallery-item-large,
    .gallery-item-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item {
        height: 360px;
    }


    /* RESERVATIONS */

    .reservations {
        grid-template-columns: 1fr;
    }

    .reservations-image img {
        min-height: 500px;
        height: 500px;
    }

    .reservations-content {
        padding: 75px 8%;
    }

    .reservation-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 520px) {

    .container {
        width: 90%;
    }

    .logo {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .hero {
        min-height: 720px;
    }

    .hero h1 {
        font-size: clamp(34px, 10.5vw, 46px);
    }

    .hero h1 span {
        white-space: normal;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .story-image img {
        height: 400px;
    }

    .story-content h2 {
        font-size: 38px;
    }

    .menu-card-image img {
        height: 360px;
    }

    .gallery-item {
        height: 320px;
    }

    .reservations-image img {
        min-height: 420px;
        height: 420px;
    }

    .reservations-content {
        padding: 60px 7%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}