:root {
  --clr-primary: #7a1f3d;
  --clr-primary-dark: #5c1730;
  --clr-accent: #d4af37;
  --clr-bg: #fffaf5;
  --clr-text: #2b2b2b;
  --clr-muted: #767676;
  --radius: 10px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--clr-text);
  background: var(--clr-bg);
}

h1, h2, h3 { font-family: 'Playfair Display', serif; margin: 0 0 0.5em; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

a { color: var(--clr-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-primary);
}
.logo:hover { text-decoration: none; }

.nav a {
  margin-left: 1.5rem;
  color: var(--clr-text);
  font-weight: 500;
}
.nav a:hover { color: var(--clr-primary); text-decoration: none; }

.hero {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: #fff;
  text-align: center;
  padding: 5rem 1rem;
}
.hero.small { padding: 3rem 1rem; }
.hero h1 { font-size: 2.75rem; color: #fff; }
.hero p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0.75rem auto 1.5rem; }

.btn {
  display: inline-block;
  background: var(--clr-accent);
  color: #2b2b2b;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
}
.btn:hover { background: #c49c2c; text-decoration: none; }

.about {
  padding: 3.5rem 1.25rem;
  text-align: center;
}
.about p { max-width: 700px; margin: 0 auto; color: var(--clr-muted); line-height: 1.7; }

.products { padding: 1rem 1.25rem 4rem; }
.products h2 { text-align: center; margin-bottom: 1.5rem; }

.gallery-status { text-align: center; color: var(--clr-muted); }

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

.gallery-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-item .caption {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--clr-text);
  text-align: center;
}

.contact-info { padding: 3rem 1.25rem 4rem; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.contact-note {
  text-align: center;
  color: var(--clr-muted);
  font-size: 0.9rem;
}

.site-footer {
  background: #fff;
  border-top: 1px solid #eee;
  text-align: center;
  padding: 2rem 1.25rem;
  color: var(--clr-muted);
  font-size: 0.9rem;
}
