:root {
    --paper: #FBF9F4;
    --paper-deep: #F3EFE4;
    --ink: #2B2A26;
    --ink-soft: #55534B;
    --olive: #4A5A3A;
    --olive-deep: #333F27;
    --clay: #B4632F;
    --clay-soft: #E7D3BC;
    --line: rgba(43, 42, 38, 0.14);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.display {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- Motiv dekorativ (nyje thurjeje) ---------- */
.stitch {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stitch svg {
    flex-shrink: 0;
}

.stitch span {
    font-family: 'Work Sans', sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--olive-deep);
    font-weight: 600;
}

/* ---------- Header ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(251, 249, 244, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    border-bottom: 1px solid var(--line);
    box-shadow: 0 6px 24px rgba(43, 42, 38, 0.04);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    max-width: 1180px;
    margin: 0 auto;
}

.logo {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    color: var(--olive-deep);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 14.5px;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--clay);
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--olive-deep);
    color: var(--paper) !important;
    padding: 11px 24px;
    border-radius: 3px;
    font-size: 13.5px;
    letter-spacing: 0.04em;
}

.nav-cta:hover {
    background: var(--clay);
}

.nav-cta::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 32px 100px;
    overflow: hidden;
}

.hero-grid {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.hero-eyebrow {
    margin-bottom: 26px;
}

.hero h1 {
    font-size: clamp(42px, 5.4vw, 74px);
    line-height: 1.04;
    margin-bottom: 26px;
}

.hero h1 em {
    font-style: italic;
    color: var(--olive-deep);
}

.hero-sub {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 470px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 3px;
    font-size: 14.5px;
    letter-spacing: 0.03em;
    font-weight: 500;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--olive-deep);
    color: var(--paper);
}

.btn-primary:hover {
    background: var(--clay);
    transform: translateY(-1px);
}

.btn-ghost {
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-ghost:hover {
    border-color: var(--ink);
    background: rgba(43, 42, 38, 0.03);
}

.hero-facts {
    display: flex;
    gap: 44px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.hero-fact .display {
    font-size: 30px;
    color: var(--olive-deep);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-fact span {
    font-size: 12.5px;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
}

.hero-visual {
    position: relative;
    height: 560px;
}

.hero-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 82%;
    height: 440px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 30px 70px -20px rgba(43, 42, 38, 0.35);
}

.hero-img-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 46%;
    height: 260px;
    object-fit: cover;
    border-radius: 4px;
    border: 6px solid var(--paper);
    box-shadow: 0 20px 45px -15px rgba(43, 42, 38, 0.3);
}

.hero-badge {
    position: absolute;
    top: 22px;
    left: -20px;
    background: var(--clay);
    color: var(--paper);
    width: 108px;
    height: 108px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Fraunces', serif;
    font-size: 13px;
    font-style: italic;
    line-height: 1.3;
    box-shadow: 0 12px 30px rgba(180, 99, 47, 0.35);
    z-index: 5;
    padding: 6px;
}

/* ---------- Sections general ---------- */
section {
    padding: 120px 0;
}

.section-tight {
    padding: 100px 0;
}

.eyebrow-row {
    margin-bottom: 22px;
}

.section-head {
    max-width: 640px;
    margin-bottom: 64px;
}

.section-head h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
}

.section-head p {
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: 17px;
    font-weight: 300;
    max-width: 520px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head.center p {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Rreth nesh ---------- */
.about {
    background: var(--paper-deep);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
}

.about-quote {
    position: absolute;
    bottom: -36px;
    right: -36px;
    background: var(--olive-deep);
    color: var(--paper);
    padding: 30px 34px;
    border-radius: 4px;
    max-width: 280px;
    box-shadow: 0 25px 50px -15px rgba(51, 63, 39, 0.4);
}

.about-quote p {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
}

.about-quote span {
    display: block;
    margin-top: 14px;
    font-size: 12.5px;
    letter-spacing: 0.05em;
    opacity: 0.75;
}

.about-text h2 {
    font-size: clamp(30px, 3.6vw, 42px);
    margin-bottom: 26px;
    line-height: 1.15;
}

.about-text p {
    color: var(--ink-soft);
    font-size: 16.5px;
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 520px;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
}

.about-stats .display {
    font-size: 26px;
    color: var(--clay);
    margin-bottom: 4px;
}

.about-stats span {
    font-size: 12.5px;
    color: var(--ink-soft);
}

/* ---------- Specialitetet ---------- */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    background: var(--line);
}

.dish-card {
    background: var(--paper);
    padding: 44px 38px;
    position: relative;
    transition: background 0.3s ease;
}

.dish-card:hover {
    background: var(--paper-deep);
}

.dish-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--clay);
    margin-bottom: 24px;
    display: block;
}

.dish-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
}

.dish-card p {
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
}

/* ---------- Galeri ---------- */
.gallery {
    background: var(--paper-deep);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 6px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item {
    overflow: hidden;
    border-radius: 3px;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item.tall {
    grid-row: span 2;
}

/* ---------- Deshmi ---------- */
.testimonial {
    text-align: center;
}

.testimonial-mark {
    font-family: 'Fraunces', serif;
    font-size: 90px;
    color: var(--clay-soft);
    line-height: 1;
    margin-bottom: -20px;
}

.testimonial blockquote {
    font-family: 'Fraunces', serif;
    font-size: clamp(24px, 3vw, 34px);
    font-style: italic;
    max-width: 780px;
    margin: 0 auto 28px;
    line-height: 1.45;
    color: var(--ink);
}

.testimonial cite {
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
}

/* ---------- Info / Orari ---------- */
.info {
    background: var(--olive-deep);
    color: var(--paper);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.info-block .stitch span {
    color: rgba(251, 249, 244, 0.7);
}

.info-block h3 {
    color: var(--paper);
    font-size: 26px;
    margin: 20px 0 22px;
}

.info-block p,
.info-block a {
    color: rgba(251, 249, 244, 0.72);
    font-size: 15.5px;
    font-weight: 300;
    line-height: 1.7;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(251, 249, 244, 0.14);
    font-size: 15px;
}

.hours-row span:first-child {
    color: rgba(251, 249, 244, 0.9);
}

.hours-row span:last-child {
    color: rgba(251, 249, 244, 0.6);
}

.info-cta {
    display: inline-flex;
    margin-top: 26px;
    color: var(--paper) !important;
    border-bottom: 1px solid rgba(251, 249, 244, 0.4);
    padding-bottom: 3px;
    font-size: 15px;
}

/* ---------- Footer ---------- */
footer {
    background: var(--olive-deep);
    border-top: 1px solid rgba(251, 249, 244, 0.14);
    padding: 40px 0;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(251, 249, 244, 0.55);
    font-size: 13.5px;
}

.footer-row .logo {
    color: rgba(251, 249, 244, 0.9);
    font-size: 19px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ---------- Focus visible ---------- */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--clay);
    outline-offset: 3px;
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 420px;
        margin-top: 20px;
        order: -1;
    }

    .hero {
        padding: 130px 24px 70px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-img {
        height: 380px;
    }

    .about-quote {
        position: static;
        margin-top: -60px;
        margin-left: 24px;
        max-width: none;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .footer-row {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    section {
        padding: 80px 0;
    }

    .container {
        padding: 0 22px;
    }
}

/* ---------- Responsive Fixes & Additions ---------- */
@media (max-width: 1024px) {
    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 940px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 380px;
        margin-top: 10px;
        order: -1;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero-badge {
        top: 10px;
        left: 10px;
        width: 90px;
        height: 90px;
        font-size: 11px;
    }

    .hero-facts {
        gap: 20px;
        flex-wrap: wrap;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img {
        height: 320px;
    }

    .about-quote {
        position: static;
        margin-top: -30px;
        margin-left: 0;
        max-width: none;
    }

    .about-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
    }

    .dish-card {
        padding: 32px 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .gallery-item img {
        height: 260px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-row {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    section {
        padding: 70px 0;
    }

    .section-tight {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-facts {
        gap: 15px;
    }

    .hero-fact {
        width: 45%;
    }
}
/* ---------- Footer meta (rights + privacy link) ---------- */
.footer-meta {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-link {
    color: rgba(251, 249, 244, 0.55);
    font-size: 13.5px;
    border-bottom: 1px solid rgba(251, 249, 244, 0.25);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-link:hover {
    color: rgba(251, 249, 244, 0.9);
    border-color: rgba(251, 249, 244, 0.6);
}

@media (max-width: 940px) {
    .footer-meta {
        flex-direction: column;
        gap: 10px;
    }
}
