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

:root {
  --max: 1100px;
  --bg: #0d0d0d;
  --surface: #161616;
  --surface2: #1e1e1e;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.18);
  --text: #f0ece4;
  --muted: #888;
  --accent: #c8a96e;
  --accent-dim: rgba(200,169,110,0.12);
  --red: #c0392b;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.brand span { color: var(--accent); }

nav.links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

nav.links a {
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: color 0.2s, background 0.2s;
}

nav.links a:hover { color: var(--text); background: var(--surface2); }
nav.links a.active { color: var(--accent); background: var(--accent-dim); }

/* ── CONTAINER ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HERO (HOME) ── */
.hero {
  padding: 100px 24px 80px;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  max-width: 14ch;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 48ch;
  font-weight: 300;
  line-height: 1.7;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 60px 24px 40px;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.page-header .eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
}

.page-header p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  max-width: 55ch;
}

/* ── SECTION ── */
.section {
  padding: 48px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ── CARDS ── */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 580px) { .grid { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
  color: var(--text);
}

.card .meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.card .meta-row .dot { opacity: 0.35; font-size: 10px; }

.card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 14px;
}

.card .bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  gap: 8px;
  flex-wrap: wrap;
}

.rating {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.rating span {
  font-size: 12px;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  color: var(--muted);
}

.visited {
  font-size: 12px;
  color: var(--muted);
}

/* ── PRICE BADGE ── */
.price {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent);
  background: var(--accent-dim);
  font-weight: 500;
}

/* ── RECIPE CARD ── */
.recipe-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.recipe-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.recipe-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.recipe-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.recipe-meta span { display: flex; align-items: center; gap: 4px; }

.recipe-section-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 6px;
}

.recipe-card .ingredients, .recipe-card .steps {
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ── LOCATIONS ── */
.location-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  transition: border-color 0.2s, transform 0.2s;
}

.location-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.location-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.location-card .visited-date {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.location-card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}

/* ── HOME FEATURE GRID ── */
.home-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 700px) { .home-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s;
  text-decoration: none;
  display: block;
  color: var(--text);
}

.feature-card:hover { border-color: var(--border-hover); }

.feature-card .fc-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}

.feature-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.feature-card .fc-arrow {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
}

@media (max-width: 580px) { .stats-row { grid-template-columns: 1fr; } }

.stat {
  background: var(--surface);
  padding: 24px;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 28px 24px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner .brand { font-size: 16px; }

.footer-inner p {
  font-size: 13px;
  color: var(--muted);
}
