/* PeraliShop — palette pulled from the orange Etsy banner */
:root {
  --orange:        #d65a2c;
  --orange-dark:   #b9461d;
  --cream:         #fffdfa;
  --cream-darker:  #f8f1e5;
  --ink:           #1a1a1a;
  --muted:         #6b6258;
  --line:          #e5e0d8;
  --shadow:        0 2px 6px rgba(40,30,20,.06), 0 12px 32px rgba(40,30,20,.08);
  --radius:        6px;
  --max:           1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); text-decoration: underline; }

/* ---- Header ---- */
header.site {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
header.site .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand img.logo { height: 32px; width: auto; display: block; }
nav.primary { display: flex; gap: 1.5rem; font-size: 0.95rem; }
nav.primary a { color: var(--ink); }
nav.primary a:hover { color: var(--orange); text-decoration: none; }

/* ---- Hero ---- */
.hero {
  background: var(--orange);
  color: #fff;
  padding: 5rem 1.5rem 5.5rem;
  text-align: center;
}
.hero-logo img.logo { height: 110px; width: auto; margin: 0 auto 1.5rem; display: block; }
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin: 0 0 0.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero p.tagline {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  margin: 0 auto 2rem;
  max-width: 580px;
  opacity: 0.95;
}
.cta {
  display: inline-block;
  background: var(--cream);
  color: var(--orange-dark);
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.18); text-decoration: none; color: var(--orange-dark); }
.hero-meta {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.9rem;
  opacity: 0.9;
  flex-wrap: wrap;
}
.hero-meta .dot { opacity: 0.5; }

/* ---- Section ---- */
section.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
section.section h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
section.section .sub {
  color: var(--muted);
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  max-width: 620px;
}

/* ---- Collections grid ---- */
.collections {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.collection {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--ink);
}
.collection:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
}
.collection img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  background: var(--cream-darker);
}
.collection .info {
  padding: 0.9rem 1rem 1.1rem;
}
.collection h3 {
  font-size: 1.02rem;
  margin: 0 0 0.15rem;
  font-weight: 600;
}
.collection p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* ---- About blurb ---- */
.about-blurb {
  background: var(--cream-darker);
  padding: 4rem 1.5rem;
}
.about-blurb .wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-blurb h2 { margin: 0 0 1rem; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.about-blurb p { color: var(--ink); font-size: 1.05rem; }

/* ---- Footer ---- */
footer.site {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 1.5rem 2rem;
}
footer.site .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}
footer.site h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.85rem;
  opacity: 0.7;
}
footer.site ul { list-style: none; padding: 0; margin: 0; font-size: 0.95rem; }
footer.site li { margin: 0.3rem 0; }
footer.site a { color: var(--cream); opacity: 0.8; }
footer.site a:hover { opacity: 1; color: var(--cream); }
footer.site .legal {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.82rem;
  opacity: 0.55;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.brand-footer { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; margin-bottom: 0.8rem; }
.brand-footer img.logo { height: 28px; width: auto; display: block; }
.tagline-footer { opacity: 0.7; font-size: 0.92rem; max-width: 320px; line-height: 1.55; margin: 0; }

/* ---- Content pages (about, privacy) ---- */
.content-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.content-page h1 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.content-page .lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.content-page h2 {
  color: var(--orange);
  font-size: 1.2rem;
  margin: 2.2rem 0 0.6rem;
}
.content-page p, .content-page li { font-size: 1.02rem; }
.content-page ol, .content-page ul { padding-left: 1.4rem; }

/* ---- Mobile ---- */
@media (max-width: 720px) {
  .hero { padding: 4rem 1.25rem 4.5rem; }
  section.section { padding: 3rem 1.25rem; }
  footer.site .inner { grid-template-columns: 1fr; gap: 2rem; }
  footer.site .legal { flex-direction: column; gap: 0.5rem; }
  nav.primary { gap: 1rem; font-size: 0.9rem; }
}
