:root {
  --bg: #131111;
  --bg-soft: #1e1a1a;
  --card: #221d1c;
  --text: #f4eee8;
  --muted: #cdbdad;
  --accent: #b8814a;
  --accent-2: #e3c29b;
  --border: #3d312d;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 4.2rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow {
  color: var(--accent-2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(19, 17, 17, 0.7);
  border-bottom: 1px solid rgba(205, 189, 173, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
}

.logo {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--text);
  text-decoration: none;
  font-size: 1.38rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.logo img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(227, 194, 155, 0.5);
}

.logo strong {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.9;
}

.nav a:hover {
  color: var(--accent-2);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 0.3rem 0.55rem;
  font-size: 1.1rem;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: grid;
  align-items: center;
  background: url("img/1.jpg") center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(19, 17, 17, 0.88) 30%, rgba(19, 17, 17, 0.35));
}

.hero-content {
  position: relative;
  max-width: 680px;
  padding: 5rem 0 3.5rem;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.hero-inline-logo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(227, 194, 155, 0.6);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.hero h1 {
  font-size: clamp(1.4rem, 3.4vw, 2.35rem);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #1c130f;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.btn:hover {
  filter: brightness(1.07);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}

.btn-small {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-soft);
}

.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.about-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  background: linear-gradient(180deg, #221c1b 0%, #1b1716 100%);
}

.feature-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.about-mini-gallery {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.about-mini-gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cards {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.social-links { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .25rem; }
.social-btn { display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .9rem; border-radius: 999px; background: rgba(255,255,255,.07); color: inherit; text-decoration: none; font-size: .9rem; transition: background .2s, color .2s; }
.social-btn:hover { background: var(--accent); color: #000; }

.menu-groups {
  display: grid;
  gap: 2.4rem;
  margin-top: 1.4rem;
}

.menu-filters {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.filter-chip {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover {
  border-color: var(--accent);
}

.filter-chip.active {
  background: var(--accent);
  color: #1c130f;
  border-color: var(--accent);
}

.menu-group.is-hidden {
  display: none;
}

.menu-group {
  display: grid;
  gap: 1rem;
}

.menu-group-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu-group-header h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
}

.menu-group-header p {
  margin: 0;
  max-width: 580px;
}

.menu-group .cards {
  margin-top: 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.card-body {
  padding: 0.9rem 1rem 1.1rem;
}

.price {
  color: var(--accent-2);
  font-weight: 700;
}

.gallery-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.book-info {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.book-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-top: .6rem;
}

.book-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.book-note {
  margin-top: 1.2rem;
  font-size: .88rem;
  color: var(--muted);
  opacity: .75;
}

.form-message {
  min-height: 1.5rem;
  margin-top: 0.6rem;
  color: var(--accent-2);
}

.site-footer {
  border-top: 1px solid rgba(205, 189, 173, 0.14);
  padding: 2rem 0 1.4rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(205, 189, 173, 0.14);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #1b1716;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  z-index: 120;
}

.to-top:hover {
  background: var(--accent);
  color: #1c130f;
}

.to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 900px) {
  .cards,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    min-height: 78px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    width: 54px;
    height: 54px;
  }

  .hero .eyebrow {
    font-size: 1rem;
  }

  .hero-inline-logo {
    width: 80px;
    height: 80px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    right: 4vw;
    top: 74px;
    background: #171313;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.8rem;
    flex-direction: column;
    align-items: flex-start;
    width: min(260px, 80vw);
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
