*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f5f0e8;
  --tan: #c8a97e;
  --brown: #6b4c35;
  --dark: #2e2118;
  --green: #5c6b4a;
  --text: #3a2e24;
  --light: #ede8df;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

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


/* HERO */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  text-align: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,33,24,0.7) 0%, transparent 60%);
}
.hero-text {
  position: relative;
  z-index: 1;
  color: var(--cream);
}
.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 0.5rem;
}
.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: var(--tan);
  color: var(--dark);
  border-radius: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: var(--brown); color: var(--cream); transform: translateY(-2px); }

/* INTRO */
.intro { padding: 4rem 2rem; background: var(--light); }
.container { max-width: 800px; margin: 0 auto; }
.intro p { font-size: 1.05rem; margin-bottom: 1rem; }

/* PAGES */
.page { padding: 4rem 2rem; }
.page h1 { font-size: 2.5rem; margin-bottom: 2rem; color: var(--brown); }
.page p { margin-bottom: 1rem; }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 2rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* BLOG */
.post-item { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--tan); }
.post-item h2 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.post-item h2 a:hover { color: var(--brown); }
.date { font-size: 0.8rem; color: var(--brown); margin-bottom: 0.5rem; letter-spacing: 0.05em; }

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  background: var(--dark);
  color: var(--tan);
  font-size: 0.85rem;
}
footer a { color: var(--tan); border-bottom: 1px solid var(--tan); }

/* RESPONSIVE */
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* STORE */
.container-wide { max-width: 1100px; margin: 0 auto; }
.store-sub { margin-bottom: 2.5rem; font-size: 1rem; color: var(--brown); }
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--tan);
  color: var(--dark);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  font-weight: 500;
}
.product-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info h2 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--dark);
}
.product-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.8rem;
}
.product-details {
  list-style: none;
  font-size: 0.8rem;
  color: var(--brown);
  margin-bottom: 1rem;
  flex: 1;
}
.product-details li::before { content: "· "; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brown);
}

@media (max-width: 768px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .store-grid { grid-template-columns: 1fr; }
}
.read-more { font-size: 0.85rem; color: var(--brown); letter-spacing: 0.05em; border-bottom: 1px solid var(--tan); }
.read-more:hover { color: var(--dark); }
/* HEADER */
header {
  position: sticky;
  top: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--tan);
  z-index: 100;
  padding: 1rem 2rem;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brown);
  letter-spacing: 0.05em;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--brown);
}
nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
nav a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
nav a:hover { color: var(--brown); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
  }
  nav.open { display: flex; }
}
