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

:root {
  --color-brand:   #a07a2d;
  --color-brand-dark: #947129;
  --color-brand-deeper: #3e2e0c;
  --color-bg:      #ffffff;
  --color-surface: rgba(255, 255, 255, 0.9);
  --color-text:    rgb(27, 27, 27);
  --color-muted:   #555;
  --color-border:  #e0dbd2;
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Source Sans 3', 'Source Sans Pro', Arial, sans-serif;
  --max-width:     1100px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}

/* ── Nav ── */
nav {
  background: var(--color-brand);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .brand {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
}

nav ul a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

nav ul a:hover,
nav ul a.active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2a1f0a;
  background-size: cover;
  background-position: 54.35% 55.22%;
  text-align: center;
  padding: 4rem 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero .tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
  transition: opacity 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover { opacity: 0.88; }

.btn-primary {
  background: var(--color-brand);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.75);
  color: #fff;
  margin-left: 0.75rem;
}

/* ── Announcement banner ── */
.announcement-banner {
  background: var(--color-brand);
  color: #fff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 400;
}

.announcement-banner a { color: #fff; font-weight: 600; }

/* ── White section ── */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--color-muted);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* ── Two-column content block ── */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }

.content-block-text h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.content-block-text p {
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-block-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  background: #e8e0d0;
}

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 1.75rem;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* ── Hours table ── */
.hours-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 420px;
}

.hours-table td {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  color: var(--color-text);
}

.hours-table td:first-child {
  color: var(--color-muted);
  width: 130px;
}

.hours-table td:last-child { font-weight: 400; }

/* ── Menu ── */
.menu-category {
  margin-bottom: 3rem;
}

.menu-category h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-text);
  border-bottom: 2px solid var(--color-brand);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  gap: 1rem;
}

.menu-item:last-child { border-bottom: none; }

.menu-item-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.menu-item-info p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.price {
  color: var(--color-brand);
  font-weight: 700;
  white-space: nowrap;
}

.menu-notice {
  background: #faf6ee;
  border-left: 4px solid var(--color-brand);
  padding: 0.9rem 1.2rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* ── Dark footer strip ── */
.footer-strip {
  background: #1b1b1b;
  color: #fff;
  padding: 3.5rem 2rem;
}

.footer-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
}

.footer-strip h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-brand);
  margin-bottom: 0.75rem;
}

.footer-strip p,
.footer-strip a {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.8;
  display: block;
}

.footer-strip a:hover { color: #fff; }

/* ── Footer ── */
footer {
  background: #1b1b1b;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--color-muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* ── Social links ── */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}

.social-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.social-links a:hover { color: #fff; }

/* ── Divider ── */
.section-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

/* ── Gray tinted section ── */
.section-tinted {
  background: #f9f6f0;
  padding: 4rem 0;
}

.section-tinted .section { padding-top: 0; padding-bottom: 0; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .content-block,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .content-block.reverse { direction: ltr; }
  nav ul { gap: 1rem; }
  .btn-outline { margin-left: 0; margin-top: 0.5rem; display: block; text-align: center; }
}
