/* Base & reset */
*,
*::before,
*::after { box-sizing: border-box; }
html:focus-within { scroll-behavior: smooth; }
body { margin: 0; font-family: system-ui, Arial, sans-serif; line-height: 1.6; }
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

:root {
  --accent: #39e75f; /* slime green */
  --ink: #111;
  --bg: #fff;
  --muted: #6b7280;
  --surface: #f3f4f6;
}

.container { width: min(1100px, 92%); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 0; padding: .5rem .75rem; background: #000; color: #fff; }
.skip-link:focus { left: .5rem; top: .5rem; z-index: 1000; }

/* Branding with a gooey/slime vibe (pure CSS, no images) */
header { background: var(--accent); color: #05350f; }
.brand { 
  margin: 0; 
  font-size: clamp(1.6rem, 4vw, 2.2rem); 
  letter-spacing: .5px; 
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 1px 0 #fff, 0 2px 0 #e5ffe9, 0 3px 0 #c8ffd3, 0 4px 0 #aaf5bc;
}
.nav { display: flex; gap: 1rem; flex-wrap: wrap; }
header .container { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.nav a { color: #05350f; font-weight: 700; }
.nav a:focus, .nav a:hover { text-decoration: underline; }

.hero { padding: 3rem 0; background: var(--surface); }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin: 0 0 .25rem; font-size: .85rem; }
.hero-title { margin: 0 0 .5rem; font-size: clamp(1.6rem, 4vw, 2.3rem); }
.lead { font-size: 1.05rem; color: #222; }
.button { display: inline-block; padding: .65rem 1rem; border-radius: .5rem; background: var(--accent); color: #05350f; font-weight: 800; border: 2px solid #05350f; }
.button:focus, .button:hover { transform: translateY(-1px); }

.featured { padding: 2rem 0; }
.featured .container { display: grid; gap: 1.2rem; }
.featured h2 { margin-bottom: .5rem; }
.card { background: var(--bg); border: 1px solid #e5e7eb; border-radius: .75rem; padding: 1rem; }
.card h3 { margin: .5rem 0 .25rem; }

/* Collection grid */
.grid { display: grid; gap: 1rem; }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 720px) { .featured .container { grid-template-columns: repeat(3, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card figure { margin: 0; }
.card figure img { border-radius: .5rem; }

.newsletter { background: var(--surface); padding: 2rem 0; }
.newsletter form { display: grid; gap: .5rem; max-width: 420px; }
input[type="email"] { padding: .6rem .7rem; border: 1px solid #d1d5db; border-radius: .5rem; }

.about { padding: 2rem 0; }

footer { border-top: 1px solid #e5e7eb; padding: 1rem 0; background: #fafafa; }
.footer-nav { display: flex; gap: 1rem; }



#contact {
  text-align: center;
}
/* Banner image on Contact page */
#contact img.banner {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 1rem auto;
}

#contact a {
  color: #666600;
  text-decoration: none;
}
