/* ==========================================================
   Wander For You — shared stylesheet
   Edit the colors below to change the whole site's look.
   ========================================================== */

:root {
  /* Boho: Sage + Dusty Rose palette */
  --cream:      #F4EFE7;
  --cream-alt:  #EDE5D8;
  --terracotta: #889171;  /* now sage — primary buttons/links/accents */
  --terracotta-dark: #707A5C;
  --sage:       #9C6B63;  /* now dusty rose — eyebrows/labels/meta */
  --charcoal:   #403830;
  --muted:      #7F7468;
  --white:      #FFFFFF;
  --max-width:  1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--terracotta-dark); }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(58, 46, 39, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.logo span { color: var(--terracotta); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--terracotta); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--charcoal);
  cursor: pointer;
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    display: none;
    border-bottom: 1px solid rgba(58, 46, 39, 0.08);
  }
  .nav-links.open { display: flex; }
}

/* ---------- Hero ---------- */

.hero {
  padding: 100px 24px 80px;
  text-align: center;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 780px;
  margin: 0 auto 24px;
}

.hero p.lead {
  max-width: 600px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover { background: var(--terracotta-dark); color: var(--white); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }

.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Manifesto block ---------- */

.manifesto {
  background: var(--white);
  padding: 80px 24px;
}

.manifesto blockquote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.5;
  color: var(--charcoal);
}

.manifesto blockquote p { margin: 0 0 20px; }
.manifesto blockquote .final {
  color: var(--terracotta);
  font-style: italic;
}

/* ---------- Section generic ---------- */

.section {
  padding: 80px 24px;
}
.section.alt { background: var(--cream-alt); }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); }

/* ---------- Grid cards (blog/shop teasers) ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(58, 46, 39, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(58, 46, 39, 0.12); }

.card-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--sage), var(--terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}

.card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card-body p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.card-body .meta { color: var(--sage); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.card-body .price { color: var(--terracotta); font-weight: 700; margin-top: 8px; }

/* ---------- Instagram strip ---------- */

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto 32px;
}
.insta-tile {
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--cream-alt), var(--sage) 140%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}

.center { text-align: center; }

/* ---------- Coming soon banner ---------- */

.banner {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 18px;
  padding: 36px;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto 56px;
}
.banner h3 { color: var(--cream); margin-bottom: 10px; }
.banner p { color: rgba(247,241,232,0.75); margin-bottom: 20px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--charcoal);
  color: rgba(247, 241, 232, 0.8);
  padding: 56px 24px 32px;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.site-footer h4 {
  color: var(--cream);
  font-family: 'Fraunces', serif;
  margin-bottom: 12px;
}
.site-footer a { color: rgba(247, 241, 232, 0.8); }
.site-footer a:hover { color: var(--terracotta); }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(247, 241, 232, 0.5);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 241, 232, 0.12);
}

/* ---------- Blog post page ---------- */

.post-header { text-align: center; padding: 90px 24px 40px; }
.post-header .meta { color: var(--sage); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.post-header h1 { max-width: 760px; margin: 0 auto; }

.post-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px 80px;
  font-size: 1.08rem;
}
.post-body p { margin-bottom: 22px; color: var(--charcoal); }
.post-body .drop { font-family: 'Fraunces', serif; font-size: 1.3rem; color: var(--terracotta); }
