:root {

    --paper: #FBF1DE;
    --paper-deep: #F3E2BE;

    --ink: #2E1710;

    --walnut: #7A1F2B;
    --walnut-deep: #52141C;

    --amber: #E8A33D;
    --amber-soft: #F0C169;

    --pine: #0F5C5C;
    --pine-deep: #0A4444;

    --brass: #B8860B;
    --gold: #C9A227;

    --rose: #C4432E;
    --marigold: #D97D0A;

    --line: rgba(46, 23, 16, 0.16);

    --shadow-soft: 0 20px 40px rgba(46, 23, 16, 0.18);
    --shadow-lift: 0 18px 35px rgba(46, 23, 16, 0.25);

    --font-display: Arial, Helvetica, sans-serif;
    --font-heading: Arial, Helvetica, sans-serif;
    --font-body: Arial, Helvetica, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: var(--font-body);
}


html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}


body {
    background: var(--paper);
    color: var(--ink);

    line-height: 1.6;

    overflow-x: hidden;
}


a {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}


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


button {
    cursor: pointer;
    font-family: inherit;
}

.wrap {
    max-width: 1180px;

    margin: 0 auto;

    padding: 0 40px;
}


#nav-toggle {
    display: none;
}


header {
    position: sticky;

    top: 0;

    z-index: 50;

    background: var(--paper);

    border-bottom: 1px solid var(--line);
}


.nav {
    max-width: 1180px;

    margin: 0 auto;

    padding: 18px 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.mark {
    display: flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    color: var(--walnut);

    font-family: var(--font-display);

    font-size: 24px;

    font-weight: 700;
}


.nav-links {
    display: flex;

    align-items: center;

    font-family: var(--font-heading);

    font-size: 14px;

    font-weight: 600;
}


.nav-links a {
    text-decoration: none;

    padding-bottom: 3px;

    border-bottom: 2px solid transparent;

    margin-right: 26px;

    transition: 0.2s ease;
}

.nav-links a:last-of-type {
    margin-right: 0;
}


.nav-links a:hover {
    color: var(--walnut);

    border-bottom-color: var(--gold);
}

.nav-links a.current {
    color: var(--walnut);

    border-bottom-color: var(--rose);
}


.account-link {
    color: var(--pine);

    font-weight: 600;
}

.visit-btn {
    background: var(--walnut);

    color: var(--paper) !important;

    padding: 8px 20px;

    border-radius: 20px;

    border: none !important;

    text-decoration: none;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    white-space: nowrap;

    transition: 0.2s ease;
}


.visit-btn:hover {
    background: var(--walnut-deep);

    transform: translateY(-1px);
}

.burger {
    display: none;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;
}


.burger span {
    width: 23px;

    height: 2px;

    background: var(--ink);
}

.hero {
    max-width: 1180px;

    margin: 0 auto;

    padding: 90px 40px 100px;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 60px;

    position: relative;
}


.hero-copy {
    max-width: 650px;
}


.hero-eyebrow {
    font-family: var(--font-heading);

    font-weight: 700;

    font-size: 13px;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    color: var(--pine);

    margin-bottom: 18px;
}


.hero h1 {
    font-family: var(--font-display);

    font-size: 52px;

    font-weight: 700;

    line-height: 1.18;
}


.hero h1 em {
    font-style: normal;

    color: var(--rose);

    display: block;
}


.hero-sub {
    margin-top: 24px;

    max-width: 520px;

    color: var(--walnut);

    font-size: 16px;
}


.hero-actions {
    margin-top: 34px;

    display: flex;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: var(--walnut);

    color: var(--paper);

    padding: 14px 28px;

    min-height: 48px;

    border-radius: 25px;

    text-decoration: none;

    border: none;

    font-family: var(--font-heading);

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.2s ease;
}


.btn-primary:hover {
    background: var(--walnut-deep);

    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-block;

    text-decoration: none;

    font-family: var(--font-heading);

    font-weight: 600;

    font-size: 14px;

    border-bottom: 1px solid var(--ink);

    padding-bottom: 3px;

    transition: 0.2s ease;
}


.btn-ghost:hover {
    color: var(--walnut);

    border-color: var(--walnut);
}

.hero-visual {
    min-height: 430px;

    background:
        linear-gradient(145deg,
            var(--walnut),
            var(--walnut-deep));

    border-radius: 28px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px;

    border: 8px solid var(--paper-deep);

    overflow: hidden;
}


.hero-card {
    width: 100%;

    max-width: 340px;

    background: var(--paper);

    padding: 32px;

    border-radius: 20px;

    text-align: center;

    box-shadow: var(--shadow-soft);

    position: relative;

    z-index: 2;
}


.food-circle {
    width: 170px;

    height: 170px;

    border-radius: 50%;

    margin: 0 auto 24px;

    background:
        linear-gradient(145deg,
            var(--amber),
            var(--rose));

    display: flex;

    align-items: center;

    justify-content: center;

    border: 12px solid var(--paper-deep);
}


.food-circle span {
    font-family: var(--font-display);

    font-size: 60px;

    font-weight: 700;

    color: var(--paper);
}


.food-label {
    font-family: var(--font-heading);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.12em;

    color: var(--pine);
}


.hero-card h3 {
    font-family: var(--font-display);

    font-weight: 700;

    font-size: 24px;

    margin: 8px 0;

    color: var(--walnut);
}


.hero-card p {
    font-size: 14px;

    color: var(--walnut);
}


.hero-small-card {
    position: absolute;

    bottom: 25px;

    right: -20px;

    background: var(--amber-soft);

    color: var(--walnut-deep);

    padding: 13px 20px;

    border-radius: 12px;

    display: flex;

    flex-direction: column;

    text-align: center;

    line-height: 1.2;

    z-index: 2;
}


.hero-small-card strong {
    font-family: var(--font-heading);

    font-size: 20px;
}


.hero-small-card span {
    font-size: 12px;
}

section {
    padding: 90px 0;
}


.section-head {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 25px;

    margin-bottom: 48px;

    flex-wrap: wrap;
}


.section-eyebrow {
    font-family: var(--font-heading);

    font-weight: 700;

    font-size: 13px;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    color: var(--brass);

    margin-bottom: 10px;
}


.section-head h2 {
    font-family: var(--font-display);

    font-weight: 700;

    font-size: 34px;

    line-height: 1.2;
}


.section-note {
    max-width: 340px;

    font-size: 14px;

    color: var(--walnut);
}

/* ---- Rangoli divider (signature motif) ---- */

.rangoli-divider {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    padding: 6px 0 0;
}

.rangoli-divider .line {
    height: 1px;

    width: 90px;

    background: linear-gradient(to right, transparent, var(--line));
}

.rangoli-divider .line.right {
    background: linear-gradient(to left, transparent, var(--line));
}

.rangoli-divider .divider-mark {
    font-size: 20px;
    color: var(--gold);
}

/* ---- Interior page hero banner ---- */

.page-hero {
    background: linear-gradient(160deg, var(--walnut-deep), var(--walnut));

    color: var(--paper);

    padding: 70px 0 56px;

    position: relative;

    overflow: hidden;
}

.page-hero .breadcrumb {
    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.04em;

    color: rgba(251, 241, 222, 0.65);

    margin-bottom: 16px;

    position: relative;

    z-index: 2;
}

.page-hero .breadcrumb a {
    text-decoration: none;

    color: rgba(251, 241, 222, 0.85);
}

.page-hero .breadcrumb a:hover {
    color: var(--amber-soft);
}

.page-hero h1 {
    font-family: var(--font-display);

    font-weight: 700;

    font-size: 42px;

    max-width: 640px;

    position: relative;

    z-index: 2;
}

.page-hero p {
    margin-top: 16px;

    max-width: 520px;

    color: rgba(251, 241, 222, 0.8);

    font-size: 15.5px;

    position: relative;

    z-index: 2;
}

.menu-section {
    background: var(--walnut-deep);

    color: var(--paper);
}


.menu-section .section-eyebrow {
    color: var(--amber-soft);
}


.menu-section .section-note {
    color: rgba(251, 241, 222, 0.72);
}


.menu-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 50px;
}


.menu-col h3 {
    font-family: var(--font-heading);

    color: var(--amber-soft);

    font-size: 21px;

    padding-bottom: 14px;

    margin-bottom: 20px;

    border-bottom:
        1px solid rgba(251, 241, 222, 0.2);
}


.menu-item {
    display: flex;

    align-items: baseline;

    gap: 10px;

    padding: 14px 0;

    border-bottom:
        1px dashed rgba(251, 241, 222, 0.18);
}


.menu-item:hover {
    background:
        rgba(255, 255, 255, 0.03);
}


.menu-item-text {
    display: flex;

    flex-direction: column;
}


.menu-item .name {
    font-family: var(--font-heading);

    font-size: 15.5px;

    font-weight: 700;
}


.menu-item .desc {
    font-size: 12px;

    color:
        rgba(251, 241, 222, 0.55);

    margin-top: 3px;
}

.menu-item .tag {
    display: inline-block;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.04em;

    padding: 2px 7px;

    border-radius: 10px;

    margin-top: 6px;

    width: fit-content;
}

.tag-veg {
    background: rgba(15, 92, 92, 0.25);
    color: #8fd6c9;
}

.tag-spicy {
    background: rgba(196, 67, 46, 0.25);
    color: #f2a48f;
}

.tag-chef {
    background: rgba(232, 163, 61, 0.22);
    color: var(--amber-soft);
}


.leader {
    flex: 1;

    border-bottom:
        1px dotted rgba(251, 241, 222, 0.35);
}


.price {
    font-family: var(--font-heading);

    font-weight: 700;

    font-size: 15px;

    color: var(--amber-soft);

    white-space: nowrap;
}

.menu-note-band {
    background: var(--paper-deep);

    padding: 26px 0;

    text-align: center;
}

.menu-note-band p {
    font-size: 13.5px;

    color: var(--walnut);
}

.story-grid {
    display: grid;

    grid-template-columns: 1fr 0.85fr;

    gap: 70px;

    align-items: start;
}


.story-content {
    max-width: 550px;
}


.story-content p {
    margin-bottom: 20px;

    color: var(--walnut);

    font-size: 15.5px;
}


.story-content p:first-child::first-letter {
    font-family: var(--font-display);

    font-size: 44px;

    font-weight: 700;

    float: left;

    line-height: 0.8;

    padding-right: 8px;

    padding-top: 7px;

    color: var(--rose);
}

.hours-card {
    background: var(--paper-deep);

    border: 1px solid var(--line);

    border-top: 4px solid var(--gold);

    border-radius: 12px;

    padding: 30px;
}


.hours-card h3 {
    font-family: var(--font-heading);

    font-size: 18px;

    color: var(--pine);

    margin-bottom: 20px;
}


.hours-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 12px 0;

    border-bottom: 1px solid var(--line);

    font-size: 14px;
}


.hours-row:last-child {
    border-bottom: none;
}


.hours-row .time {
    font-weight: 700;
}


.hours-row.closed .time {
    color: var(--rose);
}

/* ---- Values / feature grid (About page) ---- */

.values-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    margin-top: 56px;
}

.value-card {
    background: var(--paper-deep);

    border-radius: 14px;

    padding: 28px;

    border-top: 3px solid var(--gold);
}

.value-card h3 {
    font-family: var(--font-heading);

    font-size: 18px;

    margin-bottom: 8px;
}

.value-card p {
    font-size: 13.5px;

    color: var(--walnut);
}

/* ---- Timeline (About page) ---- */

.timeline {
    margin-top: 60px;

    display: flex;

    flex-direction: column;

    gap: 0;
}

.timeline-row {
    display: grid;

    grid-template-columns: 110px 1fr;

    gap: 24px;

    padding: 22px 0;

    border-bottom: 1px solid var(--line);
}

.timeline-row:last-child {
    border-bottom: none;
}

.timeline-year {
    font-family: var(--font-display);

    font-size: 22px;

    font-weight: 700;

    color: var(--rose);
}

.timeline-row h3 {
    font-family: var(--font-heading);

    font-size: 16.5px;

    margin-bottom: 4px;
}

.timeline-row p {
    font-size: 13.5px;

    color: var(--walnut);

    max-width: 520px;
}

/* ---- Team (About page) ---- */

.team-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    margin-top: 56px;
}

.team-card {
    text-align: center;
}

.team-photo {
    width: 100%;

    aspect-ratio: 1 / 1;

    border-radius: 14px;

    background: linear-gradient(150deg, var(--amber), var(--rose));

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 16px;
}

.team-photo span {
    display: block;

    width: 100%;

    height: 100%;
}

.team-photo span img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    border-radius: 10px;
}

.team-card h3 {
    font-family: var(--font-heading);

    font-size: 16px;

    margin-bottom: 2px;
}

.team-card span.role {
    font-size: 12.5px;

    color: var(--brass);

    font-weight: 700;

    letter-spacing: 0.03em;

    text-transform: uppercase;
}


.food-gallery-section {
    background: var(--paper-deep);
}


.food-gallery-section .section-eyebrow {
    color: var(--rose);
}

.gallery-filters {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;

    margin-bottom: 40px;
}

.gallery-filters button {
    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 600;

    padding: 8px 18px;

    border-radius: 18px;

    border: 1px solid var(--line);

    background: var(--paper);

    color: var(--walnut);

    transition: 0.2s ease;
}

.gallery-filters button.active,
.gallery-filters button:hover {
    background: var(--walnut);

    color: var(--paper);

    border-color: var(--walnut);
}


.food-gallery {
    display: grid;

    grid-template-columns: 1.25fr 1fr 1fr;

    grid-template-rows: 300px 300px;

    gap: 18px;
}


.food-image-card {
    position: relative;

    overflow: hidden;

    border-radius: 16px;

    background: var(--walnut);

    min-height: 280px;

    cursor: pointer;
}


.food-image-large {
    grid-row: span 2;
}


.food-image-wide {
    grid-column: span 2;
}


.food-image-card img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.food-image-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(46, 23, 16, 0.88),
            rgba(46, 23, 16, 0.08) 65%,
            transparent);

    z-index: 1;
}


.food-image-card:hover img {
    transform: scale(1.08);
}


.food-image-overlay {
    position: absolute;

    left: 24px;

    right: 24px;

    bottom: 22px;

    z-index: 2;

    color: var(--paper);

    display: flex;

    align-items: flex-start;

    gap: 15px;
}


.food-image-overlay>span {
    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 700;

    color: var(--amber-soft);

    padding-top: 3px;
}


.food-image-overlay h3 {
    font-family: var(--font-heading);

    font-size: 21px;

    line-height: 1.2;

    margin-bottom: 4px;
}


.food-image-overlay p {
    font-size: 12.5px;

    line-height: 1.5;

    color:
        rgba(251, 241, 222, 0.78);

    max-width: 300px;
}

.atmosphere-grid {
    display: grid;

    grid-template-columns: 1.2fr 1fr 1fr;

    grid-template-rows: 230px 230px;

    gap: 16px;
}


.atmo-card {
    position: relative;

    overflow: hidden;

    border-radius: 16px;

    padding: 28px;

    display: flex;

    align-items: flex-end;

    color: var(--paper);

    background-size: cover;

    background-position: center;

    isolation: isolate;

    cursor: pointer;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.atmo-card::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(to top,
            rgba(46, 23, 16, 0.92),
            rgba(46, 23, 16, 0.38) 55%,
            rgba(46, 23, 16, 0.08));

    transition:
        background 0.35s ease;
}


.atmo-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-lift);
}


.atmo-card:hover::before {
    background:
        linear-gradient(to top,
            rgba(46, 23, 16, 0.96),
            rgba(46, 23, 16, 0.48) 55%,
            rgba(46, 23, 16, 0.12));
}


.atmo-one {
    grid-row: span 2;

    background-image: url("./images/ambiance/one.jpg");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;
}


.atmo-two {
    background-image: url("./images/ambiance/pexels-cottonbro-7244274.jpg");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;
}


.atmo-three {
    background-image: url("./images/ambiance/pexels-hayriyenur-351892318-19343364.jpg");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;
}


.atmo-four {
    grid-column: span 2;

    background-image: url("./images/ambiance/pexels-lens-clickk-2148991298-30479386.jpg");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;
}


.atmo-five {
    grid-column: span 2;

    background-image: url("./images/ambiance/pexels-magda-ehlers-pexels-32568165.jpg");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;
}


.atmo-content {
    position: relative;

    z-index: 2;

    max-width: 340px;
}


.atmo-content span {
    display: inline-block;

    font-family: var(--font-heading);

    font-weight: 700;

    font-size: 13px;

    letter-spacing: 0.08em;

    color: var(--amber-soft);

    margin-bottom: 4px;
}


.atmo-content h3 {
    font-family: var(--font-heading);

    font-size: 22px;

    line-height: 1.15;

    margin: 4px 0 7px;

    color: var(--paper);
}


.atmo-content p {
    font-size: 14px;

    line-height: 1.5;

    color:
        rgba(251, 241, 222, 0.82);

    max-width: 330px;
}

/* ---- Stats strip ---- */

.stat-strip {
    background: var(--pine-deep);

    color: var(--paper);

    padding: 46px 0;
}

.stat-strip .wrap {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

    text-align: center;
}

.stat-strip strong {
    display: block;

    font-family: var(--font-display);

    font-size: 30px;

    font-weight: 700;

    color: var(--amber-soft);
}

.stat-strip span {
    font-size: 12.5px;

    letter-spacing: 0.03em;

    color: rgba(251, 241, 222, 0.75);
}

/* ---- Highlight teaser grid (home -> other pages) ---- */

.highlight-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.highlight-card {
    background: var(--paper-deep);

    border-radius: 16px;

    padding: 30px;

    text-decoration: none;

    color: var(--ink);

    display: flex;

    flex-direction: column;

    gap: 14px;

    border: 1px solid var(--line);

    transition: 0.25s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow-lift);

    border-color: var(--gold);
}

.highlight-card h3 {
    font-family: var(--font-heading);

    font-size: 19px;
}

.highlight-card p {
    font-size: 13.5px;

    color: var(--walnut);

    flex: 1;
}

.highlight-card .go {
    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 700;

    color: var(--walnut);
}

/* ---- Testimonials ---- */

.testimonial-section {
    background: var(--walnut-deep);

    color: var(--paper);
}

.testimonial-section .section-eyebrow {
    color: var(--amber-soft);
}

.testimonial-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.testimonial-card {
    background: rgba(251, 241, 222, 0.06);

    border: 1px solid rgba(251, 241, 222, 0.14);

    border-radius: 14px;

    padding: 26px;
}

.testimonial-card .stars {
    color: var(--amber-soft);

    letter-spacing: 2px;

    margin-bottom: 14px;
    font-size: 14px;
}

.testimonial-card p {
    font-size: 14px;

    color: rgba(251, 241, 222, 0.85);

    margin-bottom: 16px;
}

.testimonial-card .author {
    font-family: var(--font-heading);

    font-size: 13.5px;

    font-weight: 700;

    color: var(--amber-soft);
}

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

.cta-band {
    background:
        linear-gradient(135deg, var(--rose), var(--walnut));

    color: var(--paper);

    border-radius: 22px;

    padding: 56px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    flex-wrap: wrap;
}

.cta-band h2 {
    font-family: var(--font-display);

    font-weight: 700;

    font-size: 26px;

    max-width: 440px;
}

.cta-band .light-button {
    background: var(--paper);

    color: var(--walnut-deep);
}

.cta-band .light-button:hover {
    background: var(--amber-soft);
}

.reserve-section {
    background: var(--paper-deep);
}


.reserve-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr;

    gap: 50px;

    align-items: start;
}


.reserve-form {
    background: var(--paper);

    border: 1px solid var(--line);

    border-top: 4px solid var(--gold);

    border-radius: 12px;

    padding: 34px;
}


.form-row {
    margin-bottom: 20px;
}


.form-row label {
    display: block;

    font-family: var(--font-heading);

    font-weight: 700;

    font-size: 12px;

    letter-spacing: 0.05em;

    text-transform: uppercase;

    color: var(--pine);

    margin-bottom: 8px;
}


.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;

    padding: 12px 14px;

    border: 1px solid var(--line);

    border-radius: 6px;

    background: #fff;

    font-size: 14.5px;

    color: var(--ink);
}


.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;

    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(201, 162, 39, 0.15);
}


.form-row textarea {
    resize: vertical;
}


.two-col {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}


.three-col {
    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 16px;
}


.reserve-form .btn-primary {
    width: 100%;
}


.reserve-side {
    display: flex;

    flex-direction: column;

    gap: 16px;
}


.reservation-box {
    background: var(--paper);

    border-left: 4px solid var(--walnut);

    padding: 22px;

    border-radius: 8px;
}


.reservation-number {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 34px;

    height: 34px;

    background: var(--walnut);

    color: var(--paper);

    border-radius: 50%;

    font-family: var(--font-heading);

    font-weight: 700;

    margin-bottom: 12px;
}


.reservation-box h3 {
    font-family: var(--font-heading);

    font-size: 19px;

    margin-bottom: 6px;
}


.reservation-box p {
    font-size: 13.5px;

    color: var(--walnut);
}

.policy-note {
    margin-top: 6px;
    background: var(--paper);
    border: 1px dashed var(--line);
    border-radius: 8px;
    padding: 18px 22px;
    font-size: 13px;
    color: var(--walnut);
}

.policy-note strong {
    color: var(--pine);
}


.visit-section {
    background: var(--pine-deep);

    color: var(--paper);
}


.visit-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}


.light-eyebrow {
    color: var(--amber-soft);
}


.visit-section h2 {
    font-family: var(--font-display);

    font-weight: 700;

    font-size: 34px;

    line-height: 1.2;

    margin-bottom: 18px;
}


.visit-section p {
    max-width: 440px;

    color:
        rgba(251, 241, 222, 0.8);

    font-size: 15px;

    margin-bottom: 26px;
}


address {
    font-style: normal;

    font-weight: 600;

    font-size: 14px;

    line-height: 1.8;
}


.light-button {
    background: var(--paper);

    color: var(--pine-deep);

    margin-top: 25px;
}


.light-button:hover {
    background: var(--amber-soft);

    color: var(--walnut-deep);
}

.map-content {
    position: relative;

    z-index: 2;

    background: var(--paper);

    color: var(--ink);

    padding: 28px;

    text-align: center;

    border-radius: 16px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);

    overflow: hidden;
}

.map-content img {
    width: 100%;

    border-radius: 10px;

    margin-bottom: 16px;

    aspect-ratio: 4/3;

    object-fit: cover;
}


.map-content h3 {
    font-family: var(--font-heading);

    font-size: 19px;

    margin-bottom: 4px;
}

/* ---- Contact info grid ---- */

.contact-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

    margin-bottom: 60px;
}

.contact-card {
    background: var(--paper-deep);

    border-radius: 14px;

    padding: 26px;

    border-top: 3px solid var(--pine);
}

.contact-card h3 {
    font-family: var(--font-heading);

    font-size: 16px;

    margin-bottom: 6px;
}

.contact-card p,
.contact-card a {
    font-size: 13.5px;

    color: var(--walnut);

    text-decoration: none;
}

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

.faq-list {
    max-width: 780px;
}

.faq-item {
    border-bottom: 1px solid var(--line);

    padding: 20px 0;
}

.faq-item h3 {
    font-family: var(--font-heading);

    font-size: 16px;

    margin-bottom: 8px;

    color: var(--walnut);
}

.faq-item p {
    font-size: 13.5px;

    color: var(--ink);

    opacity: 0.85;
}


/* ---- Footer ---- */

footer {
    background: var(--walnut-deep);

    color:
        rgba(251, 241, 222, 0.65);

    padding-top: 64px;

    font-size: 13.5px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr 1fr;

    gap: 40px;

    padding-bottom: 46px;

    border-bottom: 1px solid rgba(251, 241, 222, 0.12);
}

.footer-brand-col p {
    margin-top: 14px;

    max-width: 260px;

    color: rgba(251, 241, 222, 0.6);

    font-size: 13px;
}

.social-row {
    display: flex;

    gap: 10px;

    margin-top: 20px;
}

.social-row a {
    min-width: 34px;

    height: 34px;

    padding: 0 10px;

    border-radius: 17px;

    background: rgba(251, 241, 222, 0.08);

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.04em;

    transition: 0.2s ease;
}

.social-row a:hover {
    background: var(--amber-soft);

    color: var(--walnut-deep);
}

.footer-col h4 {
    font-family: var(--font-heading);

    color: var(--paper);

    font-size: 14px;

    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-col a {
    text-decoration: none;

    color: rgba(251, 241, 222, 0.65);

    transition: 0.2s ease;
}

.footer-col a:hover {
    color: var(--amber-soft);
}


.footer-row {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

    padding: 24px 0;
}


.footer-brand {
    display: flex;

    align-items: center;

    gap: 8px;
}


.footer-mark {
    color: var(--paper);

    font-family: var(--font-display);

    font-size: 18px;

    font-weight: 700;
}

@media (max-width: 950px) {

    /* HERO */

    .hero {
        grid-template-columns: 1fr;

        padding-top: 60px;
    }


    .hero-copy {
        max-width: 700px;
    }


    .hero-visual {
        max-width: 550px;

        width: 100%;

        margin: 0 auto;
    }


    /* MENU */

    .menu-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    /* STORY */

    .story-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .highlight-grid,
    .testimonial-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .stat-strip .wrap {
        grid-template-columns: 1fr 1fr;

        row-gap: 28px;
    }


    /* RESERVATION */

    .reserve-grid {
        grid-template-columns: 1fr;
    }


    /* VISIT */

    .visit-grid {
        grid-template-columns: 1fr;
    }


    /* FOOD GALLERY */

    .food-gallery {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            320px 260px 260px;
    }


    .food-image-large {
        grid-row: span 1;

        grid-column: span 2;
    }


    .food-image-wide {
        grid-column: span 2;
    }


    /* ATMOSPHERE */

    .atmosphere-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            300px 230px 230px;
    }


    .atmo-one {
        grid-row: span 1;

        grid-column: span 2;
    }


    .atmo-two {
        grid-column: span 1;
    }


    .atmo-three {
        grid-column: span 1;
    }


    .atmo-four {
        grid-column: span 2;
    }


    .atmo-five {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* NAVIGATION */

    .nav-links {
        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        background: var(--paper);

        border-bottom: 1px solid var(--line);

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        padding: 0 40px;

        max-height: 0;

        overflow: hidden;

        transition:
            max-height 0.3s ease;
    }


    .nav-links a {
        width: 100%;

        padding: 14px 0;
    }


    .nav-links .visit-btn {
        width: auto;

        padding: 9px 20px;

        margin:
            10px 0 18px;
    }


    #nav-toggle:checked~header .nav-links {
        max-height: 500px;
    }


    .burger {
        display: flex;
    }

}

@media (max-width: 600px) {

    .wrap,
    .nav,
    .hero {
        padding-left: 22px;

        padding-right: 22px;
    }


    section {
        padding: 65px 0;
    }


    /* HERO */

    .hero {
        padding-top: 45px;

        padding-bottom: 70px;

        gap: 40px;
    }


    .hero h1 {
        font-size: 34px;
    }


    .hero-sub {
        font-size: 15px;
    }


    .hero-actions {
        flex-direction: column;

        align-items: flex-start;
    }


    .hero-visual {
        min-height: 390px;

        padding: 25px;
    }


    .hero-card {
        padding: 24px;
    }


    .food-circle {
        width: 140px;

        height: 140px;
    }


    .food-circle span {
        font-size: 50px;
    }


    .hero-small-card {
        right: 10px;

        bottom: 15px;
    }


    /* SECTIONS */

    .section-head {
        margin-bottom: 35px;
    }


    .section-head h2 {
        font-size: 25px;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .stat-strip .wrap {
        grid-template-columns: 1fr 1fr;
    }

    .cta-band {
        padding: 34px 26px;
    }

    .cta-band h2 {
        font-size: 22px;
    }

    .timeline-row {
        grid-template-columns: 70px 1fr;
    }


    /* FOOD GALLERY */

    .food-gallery {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: auto;

        gap: 14px;
    }


    .food-image-large,
    .food-image-wide {
        grid-column: auto;

        grid-row: auto;
    }


    .food-image-card {
        height: 300px;

        min-height: 300px;
    }


    .food-image-overlay {
        left: 18px;

        right: 18px;

        bottom: 18px;
    }


    .food-image-overlay h3 {
        font-size: 20px;
    }


    /* ATMOSPHERE */

    .atmosphere-grid {
        grid-template-columns: 1fr;

        grid-template-rows: auto;

        gap: 14px;
    }


    .atmo-card {
        min-height: 300px;

        padding: 22px;

        border-radius: 14px;
    }


    .atmo-one,
    .atmo-two,
    .atmo-three,
    .atmo-four,
    .atmo-five {
        grid-column: auto;

        grid-row: auto;
    }


    .atmo-content {
        max-width: 100%;
    }


    .atmo-content h3 {
        font-size: 22px;
    }


    .atmo-content p {
        font-size: 13px;
    }


    /* FORMS */

    .two-col,
    .three-col {
        grid-template-columns: 1fr;
    }


    .reserve-form {
        padding: 24px 20px;
    }


    /* VISIT */

    .visit-section h2 {
        font-size: 28px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-row {
        flex-direction: column;

        align-items: flex-start;
    }

}

@media (max-width: 400px) {

    .hero h1 {
        font-size: 30px;
    }


    .hero-visual {
        min-height: 350px;

        padding: 18px;
    }


    .hero-card {
        padding: 20px;
    }


    .food-circle {
        width: 115px;

        height: 115px;

        border-width: 8px;
    }


    .food-circle span {
        font-size: 42px;
    }


    .hero-small-card {
        right: 5px;

        bottom: 8px;

        padding: 9px 13px;
    }


    .food-image-card {
        height: 260px;

        min-height: 260px;
    }


    .food-image-overlay h3 {
        font-size: 18px;
    }


    .food-image-overlay p {
        font-size: 11.5px;
    }


    .atmo-card {
        min-height: 260px;

        padding: 18px;
    }


    .atmo-content h3 {
        font-size: 20px;
    }


    .atmo-content p {
        font-size: 12px;
    }

}

/* ---- Add to Cart (pure HTML/CSS, no JavaScript) ---- */

body {
    counter-reset: cartItems;
}

.cart-check {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    pointer-events: none;
}

.cart-check:checked {
    counter-increment: cartItems;
}

.cart-toggle {
    position: relative;
    flex-shrink: 0;
}

.cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 13px;
    border-radius: 14px;
    border: 1px solid rgba(251, 241, 222, 0.3);
    background: transparent;
    color: var(--amber-soft);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s ease;
}

.cart-btn:hover {
    border-color: var(--amber-soft);
}

.cart-btn .added-text {
    display: none;
}

.cart-check:checked+.cart-btn {
    background: var(--pine);
    border-color: var(--pine);
    color: var(--paper);
}

.cart-check:checked+.cart-btn .add-text {
    display: none;
}

.cart-check:checked+.cart-btn .added-text {
    display: inline;
}

.menu-item:has(.cart-check:checked) {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
}

/* Light-background menu (used on interior pages) needs a light-mode button */
.menu-item-light .cart-btn {
    color: var(--walnut);
    border-color: var(--line);
}

.menu-item-light .cart-check:checked+.cart-btn {
    background: var(--walnut);
    border-color: var(--walnut);
    color: var(--paper);
}

.menu-item-light:has(.cart-check:checked) {
    background: rgba(122, 31, 43, 0.06);
}

/* Floating cart summary, purely driven by CSS counters */

.floating-cart {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--walnut);
    color: var(--paper);
    padding: 11px 18px;
    border-radius: 24px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.floating-cart .cart-num {
    background: var(--amber-soft);
    color: var(--walnut-deep);
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.floating-cart .cart-num::after {
    content: counter(cartItems);
}

body:not(:has(.cart-check:checked)) .floating-cart {
    display: none;
}

@media (max-width: 600px) {
    .floating-cart {
        top: auto;
        bottom: 20px;
        right: 16px;
    }

    .menu-item {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .leader {
        display: none;
    }
}

/* ---- Auth pages (login / sign up) ---- */

.auth-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.auth-visual {
    background-image: linear-gradient(160deg, rgba(82, 20, 28, 0.88), rgba(122, 31, 43, 0.82)), url("./images/cheffs/pexels-amine-kubranur-cakiroglu-689611212-38560693.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    color: var(--paper);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--paper);
    text-decoration: none;
    width: fit-content;
}

.auth-brand .glyph {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--amber-soft);
    display: inline-block;
}

.auth-visual-content {
    max-width: 420px;
    margin: auto 0;
}

.auth-visual-content .section-eyebrow {
    color: var(--amber-soft);
}

.auth-visual-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    margin: 14px 0 16px;
}

.auth-visual-content h2 span {
    color: var(--amber-soft);
}

.auth-visual-content p {
    color: rgba(251, 241, 222, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.auth-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background: var(--paper);
}

.auth-card {
    width: 100%;
    max-width: 420px;
}

.back-link {
    display: inline-block;
    margin-bottom: 26px;
    font-size: 13px;
    color: var(--walnut);
    text-decoration: none;
}

.back-link:hover {
    color: var(--rose);
}

.auth-card h1 {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--ink);
    margin: 8px 0 10px;
}

.auth-sub {
    color: var(--walnut);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 26px;
}

.auth-form .full-width {
    width: 100%;
    margin-top: 4px;
}

.auth-switch {
    text-align: center;
    margin-top: 22px;
    font-size: 13.5px;
    color: var(--walnut);
}

.auth-switch a {
    color: var(--rose);
    font-weight: 700;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

@media (max-width: 860px) {
    .auth-page {
        grid-template-columns: 1fr;
    }

    .auth-visual {
        display: none;
    }

    .auth-panel {
        padding: 34px 20px;
    }
}

/* ---- Star rating (Feedback page, pure CSS) ---- */

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
}

.star-rating input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.star-rating label {
    font-size: 30px;
    line-height: 1;
    color: var(--line);
    cursor: pointer;
    transition: color 0.15s ease;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
    color: var(--amber);
}

.rating-note {
    margin-top: 8px;
    font-size: 12.5px;
    color: var(--walnut);
}

/* ---- Cart / order page ---- */

.order-form-section {
    background: var(--paper-deep);
}

.floating-cart {
    text-decoration: none;
    cursor: pointer;
}