/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #1a1a1a;
  --bg-card:   #242424;
  --bg-nav:    #111111;
  --accent:    #c9a96e;
  --accent-hover: #e0c48a;
  --text:      #e8e8e8;
  --text-muted:#999999;
  --border:    #333333;
  --max-width: 1100px;
  --radius:    6px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

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

/* ===== NAVIGATION ===== */
.site-header {
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== MAIN & FOOTER ===== */
.main-content {
  flex: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.site-footer {
  background: var(--bg-nav);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 2rem 4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-tagline { margin-top: 0.3rem; font-style: italic; }

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 5rem 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: normal;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: var(--radius);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.gallery-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-item-info {
  padding: 0.85rem 1rem;
}

.gallery-item-title {
  font-size: 0.95rem;
  color: var(--text);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== BLOG ===== */
.post-list { list-style: none; }

.post-list-item {
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.post-list-item:first-child { padding-top: 0; }

.post-date {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.post-list-item h2 {
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.post-excerpt { color: var(--text-muted); }

.post-content {
  max-width: 720px;
  margin: 0 auto;
}

.post-content h1 {
  font-size: 2rem;
  font-weight: normal;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.post-content p { margin-bottom: 1.2rem; }
.post-content img {
  margin: 2rem auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ===== SHOP ===== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.shop-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.shop-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.shop-item-info {
  padding: 1rem;
}

.shop-item-title { margin-bottom: 0.3rem; }

.shop-item-price {
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.shop-item-info .btn { width: 100%; text-align: center; }

/* ===== CONTACT ===== */
.contact-block {
  max-width: 560px;
}

.contact-block h1 {
  font-size: 2rem;
  font-weight: normal;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-links { margin-top: 1.5rem; }

.contact-links li {
  list-style: none;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.contact-links li span { display: inline-block; width: 90px; }

/* ===== PAGE HEADINGS ===== */
.page-header {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: normal;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.page-header p { color: var(--text-muted); margin-top: 0.5rem; }

/* ===== LOGO ===== */
.nav-logo {
  display: flex;
  align-items: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 680px) {
  .nav {
    padding: 0.75rem 1rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-header { position: relative; }

  .site-footer {
    padding: 2rem 2rem 3rem;
    text-align: center;
  }
}
