: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 {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/your-sign-photo.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.1);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  max-width: 800px;
  padding: 0 20px;
}

.hero h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

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

.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);
  background: transparent;
}

.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);
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  cursor: pointer;
}

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

/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 10px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav a {
    margin-left: 0;
    padding: 6px 10px;
    font-size: 0.95rem;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: 4rem 1rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    margin: 6px auto;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3rem 1rem;
  }

  .card {
    padding: 1.6rem;
  }

  .placeholder {
    height: 160px;
  }
}
