/* =================================================================
   HARVEST TABLE — Centred Editorial
   Hand-written CSS. No framework.
   ================================================================= */

:root {
    --ink: #1B3A2D;
    --warm: #234A3A;
    --cream: #FBF8F1;
    --gold: #D4A843;
    --rust: #8B5E3C;

    --display: 'Cormorant', 'Georgia', serif;
    --body: 'Lora', 'Times New Roman', serif;
    --mono: 'JetBrains Mono', 'Courier New', monospace;

    --column: min(680px, 88vw);
    --space-section: clamp(3.5rem, 7vw, 6rem);
    --space-sm: clamp(1.5rem, 3vw, 2.5rem);
}


/* ---- Reset ---- */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
    text-align: center;
}

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

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

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}


/* ---- Typography ---- */

h1, h2, h3 {
    font-family: var(--display);
    font-weight: 600;
    line-height: 1.1;
}

::selection {
    background: var(--gold);
    color: var(--ink);
}


/* ---- Site Header ---- */

.site-header {
    padding: clamp(2rem, 5vw, 4rem) 1.5rem clamp(1rem, 2vw, 1.5rem);
}

.wordmark {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

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

.site-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.site-nav a {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rust);
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    border-bottom-color: var(--rust);
}


/* ---- Address line ---- */

.address {
    padding: 0.5rem 1.5rem var(--space-sm);
}

.mono-label {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rust);
}


/* ---- Decorative Rules ---- */

.rule {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) 0;
    width: var(--column);
    margin: 0 auto;
    position: relative;
}

.rule::before,
.rule::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rust);
    opacity: 0.35;
}

.rule-diamond {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
    margin: 0 1rem;
    flex-shrink: 0;
}


/* ---- Menu Sections ---- */

.menu-section {
    width: var(--column);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.menu-heading {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(3rem, 8vw, 5.5rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.3rem;
}

.menu-subheading {
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: var(--space-sm);
}

.menu-heading-sm {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    letter-spacing: 0.03em;
    color: var(--ink);
    margin-bottom: var(--space-sm);
}

.menu-course {
    margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.dish-name {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    letter-spacing: 0.02em;
    color: var(--ink);
    margin-bottom: 0.15rem;
}

.dish-desc {
    font-family: var(--body);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.92rem, 1.3vw, 1.05rem);
    color: var(--warm);
    line-height: 1.6;
}

.menu-price {
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rust);
    margin-top: var(--space-sm);
}


/* ---- Prose Sections ---- */

.prose-section {
    width: var(--column);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.prose {
    font-family: var(--body);
    font-weight: 400;
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    line-height: 1.75;
    color: var(--ink);
    max-width: 58ch;
    margin: 0 auto 1.5rem;
}

.prose:last-child {
    margin-bottom: 0;
}


/* ---- Section Headings (about page) ---- */

.section-heading {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: 0.03em;
    color: var(--ink);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}


/* ---- Page Title (about) ---- */

.page-title-section {
    padding: var(--space-sm) 1.5rem;
}

.page-title {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(3.5rem, 10vw, 7rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
}


/* ---- Info Section (hours, contact) ---- */

.info-section {
    width: var(--column);
    margin: 0 auto;
    padding: 0 1.5rem var(--space-section);
}

.hours {
    font-family: var(--body);
    font-weight: 400;
    font-size: clamp(0.92rem, 1.3vw, 1.05rem);
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.contact-block {
    margin-top: var(--space-sm);
}

.contact-block p {
    margin-bottom: 0.3rem;
}

.contact-block a {
    font-family: var(--body);
    font-size: clamp(0.92rem, 1.3vw, 1.05rem);
    color: var(--rust);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-block a:hover {
    border-bottom-color: var(--rust);
}


/* ---- Back Link (about page) ---- */

.back-link {
    margin-top: var(--space-sm);
}

.back-link a {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rust);
    border-bottom: 1px solid var(--rust);
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.back-link a:hover {
    opacity: 0.7;
}


/* ---- Image Section ---- */

.image-section {
    width: var(--column);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(0.15) contrast(1.02);
}


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

.site-footer {
    padding: var(--space-section) 1.5rem clamp(2rem, 4vw, 3rem);
    border-top: 1px solid var(--rust);
    opacity: 0.35;
    width: var(--column);
    margin: 0 auto;
}

.site-footer p {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
}

.site-footer a {
    color: var(--rust);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.site-footer a:hover {
    border-bottom-color: var(--rust);
}


/* ---- Reduced Motion ---- */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    html {
        scroll-behavior: auto;
    }
}


/* ---- Print ---- */

@media print {
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    .site-header,
    .site-footer,
    .rule {
        display: none;
    }
}
