.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-brown-dark);
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.brand-name {
  line-height: 1.2;
}

.nav-main {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #d4a574 0%, #8b5a2b 100%) center/cover;
  color: var(--color-white);
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 30, 20, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--color-wheat);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.product-img {
  height: 160px;
  background: var(--color-wheat) center/cover;
}

.product-body {
  padding: 1rem;
}

.product-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.price {
  font-weight: 700;
  color: var(--color-brown);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: center/cover;
}

.site-footer {
  background: var(--color-brown-dark);
  color: var(--color-wheat);
  padding: 2.5rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-cream);
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-main.open { display: flex; }
  .nav-toggle { display: block; }
}
