@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
  --bg-page: #F2E5C9;
  --bg-paper: #FBF5E5;
  --bg-warm: #ECDDB9;
  --bg-dark: #2E180A;
  --bg-darker: #1F0E04;
  --ink: #2B1505;
  --ink-soft: #5C4128;
  --ink-mute: #8C7755;
  --light: #FBF5E5;
  --terracotta: #9C4128;
  --terracotta-deep: #6E2A19;
  --brass: #E8C275;
  --brass-deep: #C99840;
  --olive: #6B7142;
  --border: #D9C49C;
  --border-soft: rgba(43, 21, 5, 0.08);
  --radius: 12px;
  --radius-lg: 18px;
  --gap: 28px;
  --container-max: 1280px;
  --shadow-sm: 0 1px 2px rgba(43, 21, 5, 0.06);
  --shadow-paper: 0 6px 28px rgba(43, 21, 5, 0.07), 0 1px 2px rgba(43, 21, 5, 0.04);
  --shadow-hover: 0 14px 40px rgba(43, 21, 5, 0.13);
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Lora', Georgia, 'Times New Roman', serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg-page);
  background-image:
    radial-gradient(circle at 18% 14%, rgba(201, 152, 64, 0.06) 0%, transparent 32%),
    radial-gradient(circle at 82% 86%, rgba(156, 65, 40, 0.05) 0%, transparent 36%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
img, picture { max-width: 100%; height: auto; display: block; }
::selection { background: var(--terracotta); color: var(--light); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: 0; color: var(--ink); }

/* ============ Header ============ */
.site-header {
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 28px 24px 22px;
  position: relative;
}

.site-header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--terracotta);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  color: var(--ink);
}

.brand__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1;
}

.brand__tag {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}

.site-nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.site-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 4px 22px;
  position: relative;
  font-weight: 500;
}

.site-nav a + a::before {
  content: '◆';
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brass);
  font-size: 6px;
}

.site-nav a:hover { color: var(--terracotta); }
.site-nav a.is-current { color: var(--terracotta); font-style: italic; }

.menu-trigger { display: none; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light);
  background: var(--bg-dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.05);
  transform: scale(1.04);
  transition: transform 1.6s var(--ease);
}

.hero:hover .hero__bg { transform: scale(1.08); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(46, 24, 10, 0.20) 0%, rgba(46, 24, 10, 0.62) 100%),
    linear-gradient(180deg, rgba(46, 24, 10, 0.30) 0%, rgba(46, 24, 10, 0.55) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 32px;
  max-width: 920px;
}

.ornament {
  display: block;
  height: 28px;
  margin: 0 auto 24px;
  color: var(--brass);
  text-align: center;
  line-height: 0;
}

.ornament--center { margin: 0 auto 24px; }

.ornament svg { height: 100%; width: 140px; display: inline-block; }

.hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--brass);
}

.hero__sub {
  margin: 28px auto 36px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(251, 245, 229, 0.92);
  font-weight: 400;
  line-height: 1.65;
  max-width: 600px;
  font-style: italic;
}

.hero__cta {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(251, 245, 229, 0.6);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.hero__cta:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }

/* ============ Section eyebrow ============ */
.section-eyebrow {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin: 0 0 18px;
}

/* ============ Decorative section divider ============ */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 64px auto;
  max-width: 240px;
  color: var(--brass);
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--brass);
  opacity: 0.45;
}

.divider svg { width: 22px; height: 22px; }

/* ============ Sections ============ */
section { padding: 16px 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--container-max);
  margin: 56px auto;
  padding: 0 var(--gap);
}

.split--reverse .split__media { order: 1; }
.split--reverse .split__body { order: 2; }

.split__media {
  position: relative;
}

.split__media::before {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--brass);
  z-index: 0;
}

.split__media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.split__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 500;
  margin: 0 0 24px;
  line-height: 1.15;
}

.split__text {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 520px;
  line-height: 1.75;
}

.split__text p + p { margin-top: 14px; }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--terracotta);
  padding: 8px 0 6px;
  border-bottom: 1px solid var(--terracotta);
  transition: color 0.25s, border-color 0.25s, gap 0.25s;
  align-self: flex-start;
}

.btn-line:hover { color: var(--terracotta-deep); border-color: var(--terracotta-deep); gap: 14px; }

/* ============ Carte (menu page) — styled like real menu ============ */
.carte {
  background: var(--bg-paper);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(201, 152, 64, 0.08) 0%, transparent 28%),
    radial-gradient(circle at 88% 92%, rgba(156, 65, 40, 0.06) 0%, transparent 32%);
  margin: 56px auto;
  max-width: calc(var(--container-max) - 2 * var(--gap));
  padding: clamp(56px, 7vw, 96px) clamp(32px, 5vw, 88px);
  border: 1px solid var(--border);
  position: relative;
}

.carte::before, .carte::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--brass);
}

.carte::before { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.carte::after { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

.carte__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  margin: 0 0 16px;
  text-align: center;
}

.carte__lead {
  font-size: 17px;
  color: var(--ink-soft);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 24px;
  font-style: italic;
}

.carte__category {
  margin: 64px 0 0;
}

.carte__category:first-of-type { margin-top: 32px; }

.carte__category-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 36px;
  position: relative;
  color: var(--terracotta);
}

.carte__category-title::before, .carte__category-title::after {
  content: '◆';
  display: inline-block;
  margin: 0 14px;
  color: var(--brass);
  font-size: 8px;
  vertical-align: middle;
}

.carte__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 72px;
}

.dish {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dish__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.dish__name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  margin: 0;
  flex: 0 1 auto;
  line-height: 1.2;
}

.dish__dots {
  flex: 1;
  border-bottom: 1px dotted var(--ink-mute);
  margin-bottom: 6px;
  min-width: 24px;
}

.dish__price {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--terracotta);
}

.dish__desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
  font-style: italic;
}

/* ============ Page intro ============ */
.page-intro {
  padding: clamp(64px, 9vw, 110px) var(--gap) clamp(36px, 5vw, 60px);
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.page-intro__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 500;
  margin: 0 0 24px;
  line-height: 1.05;
}

.page-intro__lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
  font-style: italic;
}

/* ============ Long-form prose ============ */
.prose {
  background: var(--bg-paper);
  margin: 56px auto;
  max-width: 820px;
  padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 64px);
  border: 1px solid var(--border);
  position: relative;
}

.prose img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
}

.prose h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  margin: 56px 0 18px;
  color: var(--terracotta);
}

.prose h2:first-child { margin-top: 0; }

.prose p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 5em;
  float: left;
  line-height: 0.9;
  margin: 6px 14px 0 0;
  color: var(--terracotta);
  font-weight: 500;
  font-style: italic;
}

.prose__pull {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-style: italic;
  text-align: center;
  color: var(--terracotta);
  border: 0;
  padding: 28px 24px;
  margin: 40px 0;
  line-height: 1.4;
  position: relative;
}

.prose__pull::before, .prose__pull::after {
  content: '◆';
  display: block;
  font-size: 8px;
  color: var(--brass);
  margin: 0 auto;
}

.prose__pull::before { margin-bottom: 14px; }
.prose__pull::after { margin-top: 14px; }

/* ============ Blog grid ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 32px;
  max-width: var(--container-max);
  margin: 40px auto 56px;
  padding: 0 var(--gap);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-paper);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.blog-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}

.blog-card__media { overflow: hidden; }

.blog-card__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.blog-card:hover .blog-card__media img { transform: scale(1.05); }

.blog-card__body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__date {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-style: italic;
  margin: 0 0 10px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 14px;
  line-height: 1.25;
}

.blog-card--featured .blog-card__title { font-size: 32px; }

.blog-card__excerpt {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 22px;
  line-height: 1.6;
  flex: 1;
}

.blog-card__more {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  align-self: flex-start;
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--container-max);
  margin: 56px auto;
  padding: 0 var(--gap);
}

.contact-info {
  background: var(--bg-paper);
  padding: clamp(40px, 5vw, 80px);
  border: 1px solid var(--border);
}

.contact-block {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
}

.contact-block:last-child { border-bottom: 0; }

.contact-block__label {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin: 0 0 8px;
}

.contact-block__value {
  font-size: 18px;
  margin: 0;
  line-height: 1.55;
  color: var(--ink);
}

.contact-block__value a {
  border-bottom: 1px solid var(--ink-mute);
  transition: color 0.2s, border-color 0.2s;
}

.contact-block__value a:hover { color: var(--terracotta); border-color: var(--terracotta); }

.contact-aside {
  background: var(--bg-dark);
  color: var(--light);
  padding: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.contact-aside__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--brass);
  margin: 18px 0 18px;
  max-width: 380px;
}

.contact-aside__author {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(251, 245, 229, 0.65);
  font-style: italic;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--bg-dark);
  color: var(--light);
  margin-top: 80px;
  padding: 64px var(--gap) 32px;
  text-align: center;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--brass);
}

.site-footer__inner {
  max-width: 880px;
  margin: 0 auto;
}

.site-footer__brand {
  display: inline-block;
  margin-bottom: 12px;
}

.site-footer__brand .brand__name {
  color: var(--light);
  font-size: 30px;
}

.site-footer__brand .brand__tag {
  color: var(--brass);
}

.site-footer__address {
  font-style: italic;
  color: rgba(251, 245, 229, 0.78);
  margin: 24px 0;
  font-size: 16px;
  line-height: 1.7;
}

.site-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(251, 245, 229, 0.1);
  border-bottom: 1px solid rgba(251, 245, 229, 0.1);
}

.site-footer__nav a {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(251, 245, 229, 0.7);
  padding: 4px 22px;
  position: relative;
}

.site-footer__nav a + a::before {
  content: '◆';
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brass);
  font-size: 5px;
}

.site-footer__nav a:hover { color: var(--brass); }

.site-footer__copy {
  font-size: 12px;
  font-style: italic;
  color: rgba(251, 245, 229, 0.4);
  margin: 12px 0 0;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* Hide unused side menu panel (we use horizontal nav) */
.menu-panel, .menu-overlay { display: none; }

/* Mobile */
@media (max-width: 880px) {
  .site-nav { gap: 0; flex-direction: column; gap: 6px; }
  .site-nav a { padding: 4px 12px; }
  .site-nav a + a::before { display: none; }

  .split, .split--reverse { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__media { order: initial; }
  .split--reverse .split__body { order: initial; }
  .split__media img { height: 320px; }
  .split__media::before { inset: 10px -10px -10px 10px; }

  .carte__items { grid-template-columns: 1fr; gap: 28px; }

  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured { grid-column: auto; grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .site-footer__nav { flex-direction: column; gap: 6px; }
  .site-footer__nav a + a::before { display: none; }

  .hero { min-height: 65vh; }
}
