:root {
    --ink: #30251f;
    --muted: #75665b;
    --paper: #fbf7f0;
    --cream: #f2e7d6;
    --terracotta: #b84f32;
    --ochre: #d89a3d;
    --line: #ddcdbb;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Georgia, 'Times New Roman', serif; }
.site-header { background: var(--paper); border-bottom: 1px solid var(--line); }
.brand-name { color: var(--terracotta); font-size: 1.25rem; font-weight: 700; line-height: .85; letter-spacing: .03em; }
.brand-name small { color: var(--muted); font-size: .62rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; }
.nav-link { color: var(--ink); margin-left: 1.5rem; font-size: .95rem; }
.nav-link:hover, .nav-link.active { color: var(--terracotta); }
.hero { min-height: 440px; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(220px, .6fr); align-items: center; gap: 3rem; position: relative; }
.hero:before { content: ''; width: 280px; height: 280px; background: var(--cream); border-radius: 50%; position: absolute; right: 13%; top: 75px; z-index: 0; }
.hero-copy, .hero-note { position: relative; z-index: 1; }
.eyebrow { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .16em; margin-bottom: .75rem; text-transform: uppercase; }
h1, h2, h3 { font-weight: 400; }
h1 { font-size: clamp(3rem, 7vw, 6rem); line-height: .95; max-width: 760px; margin-bottom: 1.3rem; }
h1 em { color: var(--terracotta); font-style: italic; }
.hero-text { color: var(--muted); font-size: 1.2rem; line-height: 1.6; max-width: 590px; }
.btn-primary { background: var(--terracotta); border-color: var(--terracotta); border-radius: 0; font-family: Arial, sans-serif; font-size: .85rem; padding: .85rem 1.25rem; }
.btn-primary:hover { background: #913b25; border-color: #913b25; }
.hero-note { border-top: 1px solid var(--terracotta); padding-top: 1rem; max-width: 220px; margin-top: 5rem; }
.note-number { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .8rem; }
.hero-note p { font-size: 1.05rem; line-height: 1.5; }
.intro-band { background: var(--cream); }
.section-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0; }
.dish-card { background: var(--paper); height: 100%; }
.dish-card img { display: block; height: 280px; object-fit: cover; width: 100%; }
.dish-info { padding: 1.3rem 1.4rem 1.5rem; }
.dish-info span, .footer-student span { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.dish-info h3 { font-size: 2rem; margin: .25rem 0 .45rem; }
.dish-info p, .story-section p { color: var(--muted); line-height: 1.65; margin-bottom: 0; }
.story-section { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.text-link { color: var(--terracotta); display: inline-block; font-weight: 700; margin-top: 1.2rem; text-decoration: none; }
.text-link:hover { color: var(--ink); }
.site-footer { background: var(--ink); color: var(--paper); padding: 2.5rem 0; }
.footer-content { display: grid; grid-template-columns: 1fr 1.4fr auto; gap: 2rem; align-items: center; }
.site-footer strong { font-size: 1.1rem; }
.site-footer p { color: #cbbcaf; margin: .35rem 0 0; }
.footer-student strong { display: block; font-size: .95rem; margin-top: .3rem; }
.copyright { text-align: right; }
.page-heading { background: var(--cream); padding: 5rem 0 4rem; }
.page-heading h1 { font-size: clamp(3rem, 7vw, 5.5rem); margin: 0; }
.content-section { padding: 4rem 0; }
.event-list { border-top: 1px solid var(--line); }
.event-item { display: grid; grid-template-columns: 130px 1fr auto; gap: 2rem; align-items: center; border-bottom: 1px solid var(--line); padding: 1.7rem 0; }
.event-date { color: var(--terracotta); font-family: Arial, sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.event-item h2 { font-size: 1.8rem; }
.event-item p { color: var(--muted); margin: .3rem 0 0; }
.event-place { color: var(--muted); font-family: Arial, sans-serif; font-size: .8rem; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.info-grid h2 { margin-bottom: 1rem; }
.info-grid p { color: var(--muted); line-height: 1.75; }
.fact-list { border-top: 1px solid var(--line); list-style: none; margin: 1.5rem 0 0; padding: 0; }
.fact-list li { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.fact-list strong { color: var(--terracotta); display: block; font-size: 1.2rem; margin-bottom: .2rem; }
@media (max-width: 767px) {
    .nav-link { margin-left: 0; }
    .hero { display: block; min-height: auto; padding-bottom: 4rem !important; }
    .hero:before { right: 0; top: 150px; width: 210px; height: 210px; }
    .hero-note { margin: 3rem 0 0 auto; }
    .section-heading, .story-section, .info-grid { display: block; }
    .section-heading h2 { margin-top: 1rem; }
    .story-section > div + div { margin-top: 2rem; }
    .footer-content { display: block; }
    .footer-student { margin-top: 1.5rem; }
    .copyright { margin-top: 1.5rem !important; text-align: left; }
    .event-item { grid-template-columns: 1fr; gap: .5rem; }
    .event-place { margin-top: .5rem; }
}