
:root {
  --accent: #111;
  --muted: #666;
  --bg-light: #f6f7f8;
  --border: #e5e5e5;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  line-height: 1.6;
  background: #fff;
  color: #111;
}

/* Header */
.header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  max-height: 32px;
  max-width: 160px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
}

nav a {
  margin-left: 18px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

.etsy-link {
  font-weight: 700;
}

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 1rem;
  background: linear-gradient(180deg, #fafafa, #f1f1f1);
}

.hero h2 {
  font-size: 2.8rem;
  letter-spacing: -0.5px;
}

.hero p {
  margin: 1rem 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  background: #fff;
}

.hero-actions {
  margin-top: 2rem;
}

/* Buttons */
.btn {
  padding: 12px 22px;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
  border-radius: 6px;
  font-weight: 600;
}

.primary {
  background: var(--accent);
  color: #fff;
}

.primary:hover {
  opacity: 0.9;
}

.secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.secondary:hover {
  background: #fff;
}

/* Sections */
.section {
  padding: 4rem 1rem;
  text-align: center;
}

.light {
  background: var(--bg-light);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.card {
  padding: 2.2rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.card h3 {
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--muted);
}

.card a {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: 600;
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: auto;
}

.why-grid div {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 8px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: auto;
}

.placeholder {
  height: 200px;
  background: linear-gradient(135deg, #eaeaea, #dcdcdc);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
}

/* Form */
.contact-form {
  max-width: 520px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.contact-form button {
  cursor: pointer;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
}