﻿:root {
  color-scheme: light;
  font-family: 'Inter', sans-serif;
  --bg: #f8f5ef;
  --surface: #ffffff;
  --surface-alt: #fbf7f0;
  --text: #1b1a27;
  --muted: #6d6b73;
  --border: #e8e2d2;
  --gold: #c8a96e;
  --gold-dark: #a48243;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.site-footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 32px 20px;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--gold);
}

.site-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(232, 226, 210, 0.9);
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.nav-search {
  display: flex;
  gap: 8px;
}

.nav-search-input {
  border: 1px solid rgba(232, 226, 210, 0.9);
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  outline: none;
  min-width: 180px;
}

.btn-nav-search {
  border: none;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  padding: 10px 18px;
}

@media (max-width: 760px) {
  .site-nav {
    padding: 14px 16px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }

  .nav-search {
    width: 100%;
  }
}
