* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --terra: #c96f4f;
  --terra-dark: #b05a3c;
  --brown: #7a4a35;
  --cream: #faf8f5;
  --card: #ffffff;
  --ink: #2b2b2b;
  --line: rgba(128,128,128,0.18);
}
body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
}
a { color: var(--terra-dark); }
img { max-width: 100%; }

/* Nav */
nav.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(250,248,245,0.95);
}
nav.top .logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.1em;
}
nav.top .logo-link img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
nav.top .logo-link .brand { color: var(--terra); font-style: italic; }
nav.top .links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
nav.top .links a { text-decoration: none; font-size: 1em; }
nav.top .links a.shop-btn {
  background: var(--terra);
  color: #fff;
  padding: 8px 18px;
  border-radius: 24px;
}
nav.top .links a.shop-btn:hover { background: var(--terra-dark); }

/* Hero */
header.hero { text-align: center; padding: 56px 24px 36px; }
header.hero img.logo {
  width: 140px; height: 140px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
h1 { font-size: 2.2em; margin-top: 18px; }
h1 .brand, .brand { color: var(--terra); font-style: italic; }
.tagline { font-size: 1.15em; opacity: 0.8; max-width: 580px; margin: 8px auto 0; }
.cta {
  display: inline-block;
  margin-top: 22px;
  background: var(--terra);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1.05em;
}
.cta:hover { background: var(--terra-dark); }

/* Sections */
section { max-width: 960px; margin: 0 auto; padding: 34px 24px; }
h2 { font-size: 1.5em; margin-bottom: 6px; color: var(--brown); }
.sub { opacity: 0.75; margin-bottom: 18px; }

/* Category chips */
.cats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.cats span {
  background: #efe6dd;
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 0.95em;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.gallery figure {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.15s ease;
}
.gallery figure:hover { transform: translateY(-4px); }
.gallery img { width: 100%; display: block; }
.gallery figcaption { padding: 10px 14px; font-size: 0.95em; text-align: center; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 18px; }
.step {
  background: var(--card);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--terra); color: #fff; font-size: 1.1em; margin-bottom: 10px;
}
.step h3 { margin-bottom: 6px; color: var(--brown); font-size: 1.1em; }

/* Formats */
ul.formats { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
ul.formats li { background: #efe6dd; border-radius: 6px; padding: 4px 12px; font-size: 0.9em; }

/* Social cards */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.social-card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.12); }
.social-card .icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.social-card .icon svg { width: 22px; height: 22px; fill: #fff; }
.social-card .label b { display: block; font-size: 1.02em; }
.social-card .label small { opacity: 0.65; }
.ic-etsy { background: #f1641e; }
.ic-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.ic-pin { background: #e60023; }
.ic-fb { background: #1877f2; }
.ic-mail { background: var(--brown); }

/* Blog cards */
.blog-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 18px; }
.blog-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card img { width: 100%; height: 170px; object-fit: cover; }
.blog-card .body { padding: 16px 18px 20px; }
.blog-card h3 { color: var(--brown); font-size: 1.12em; margin-bottom: 6px; }
.blog-card small { opacity: 0.6; }
.blog-card p { font-size: 0.95em; margin-top: 6px; }

/* Article */
article.post { max-width: 720px; margin: 0 auto; padding: 40px 24px; }
article.post h1 { font-size: 1.9em; line-height: 1.3; }
article.post .meta { opacity: 0.65; font-size: 0.92em; margin: 8px 0 22px; }
article.post h2 { margin-top: 1.6em; }
article.post p, article.post li { margin-top: 0.8em; }
article.post ul, article.post ol { padding-left: 1.4em; }
article.post img.cover { border-radius: 12px; margin: 10px 0 6px; }

/* Footer */
footer {
  margin-top: 36px;
  padding: 26px 24px 40px;
  text-align: center;
  border-top: 1px solid var(--line);
  font-size: 0.95em;
  opacity: 0.9;
}
footer a { margin: 0 8px; }
