:root {
  --yellow: #ffc107;
  --yellow-dark: #e0a800;
  --text: #111111;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 12px; }
p { margin: 0 0 16px; color: var(--muted); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 8px; font-weight: 700; transition: all .2s ease;
  border: 2px solid var(--text);
}
.btn-primary { background: var(--yellow); border-color: var(--yellow); color: #1f2937; }
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); }
.btn-outline:hover { background: var(--bg-alt); transform: translateY(-1px); }
.eyebrow { display: inline-block; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; color: var(--muted); }

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(6px); border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 800; font-size: 20px; letter-spacing: .02em; }
.nav { display: none; gap: 24px; }
.nav a { padding: 8px 0; }
.actions { display: none; }
@media (min-width: 768px) {
  .nav { display: flex; }
  .actions { display: flex; }
}

.hero { padding: 48px 0; background: linear-gradient(180deg, rgba(255,193,7,.08), transparent 60%); }
.hero-grid { display: grid; gap: 28px; align-items: center; grid-template-columns: 1fr; }
.hero-text h1 { font-size: 44px; line-height: 1.05; }
.hero-text p { font-size: 16px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.hero-media {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
  background: var(--bg-alt);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
@media (min-width: 992px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .hero-text h1 { font-size: 56px; }
  .hero-media { aspect-ratio: 1 / 1; }
}

.products { padding: 48px 0; }
.products h2 { font-size: 32px; margin-bottom: 20px; }
.grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 600px) { .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.product-card {
  border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; background: #fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 24px rgba(0,0,0,.08); border-color: rgba(255,193,7,.5); }
.product-card .media { aspect-ratio: 1/1; overflow: hidden; background: var(--bg-alt); }
.product-card img { width: 100%; height: 100%; object-fit: contain; }
.product-card .badge {
  position: absolute; margin: 12px; padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700;
  background: var(--yellow); color: #1f2937;
}
.product-card .meta { padding: 14px; display: grid; gap: 6px; }
.product-card .category { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.product-card .name { font-size: 16px; }
.product-card .price { font-weight: 700; }
.center { display: flex; justify-content: center; margin-top: 24px; }

.about { padding: 56px 0; background: #fff7dd; }
.about-inner {
  display: grid;
  gap: 28px;
  align-items: center;
  grid-template-columns: 1fr;
}
.about-copy h2 { font-size: 32px; line-height: 1.15; }
.about-copy p { max-width: 620px; }
.contact-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.contact-item {
  border: 1.5px solid rgba(17,17,17,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  padding: 16px;
}
.contact-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-item a { font-weight: 700; overflow-wrap: anywhere; }
.contact-item a:hover { color: var(--yellow-dark); }
@media (min-width: 900px) {
  .about-inner { grid-template-columns: .95fr 1.05fr; }
  .contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.collections { padding: 48px 0; background: var(--bg-alt); }
.collections h2 { font-size: 28px; margin-bottom: 16px; }
.collection-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .collection-grid { grid-template-columns: 1fr 1fr; } }
.collection-card { position: relative; border-radius: 12px; overflow: hidden; border: 1.5px solid var(--border); display: block; }
.collection-card img { width: 100%; height: 420px; object-fit: cover; }
.collection-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,.1) 40%, transparent 70%);
  color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; gap: 6px;
}
.collection-card strong { font-size: 22px; }

.newsletter { padding: 48px 0; }
.newsletter-inner { display: grid; gap: 12px; text-align: center; }
.newsletter-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.newsletter-form input {
  width: 280px; max-width: 100%; padding: 12px 14px; border-radius: 8px; border: 1.5px solid var(--border);
  font-size: 16px; outline: none;
}
.newsletter-form input:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,193,7,.25); }

.site-footer { background: #0b0b0b; color: #e5e7eb; }
.footer-grid { display: grid; gap: 24px; grid-template-columns: repeat(1, minmax(0, 1fr)); padding: 36px 0; }
.site-footer .brand { color: var(--yellow); }
.site-footer h4 { margin-bottom: 8px; color: #ffffff; }
.footer-links li a { color: #cbd5e1; }
.footer-links li a:hover { color: var(--yellow); }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.2fr .8fr .8fr .8fr; } }
.footer-bottom { border-top: 1px solid #1f2937; padding: 16px 0; text-align: center; color: #9ca3af; }
