/* ============================================================
   THE PATTERNED PAST — Global Styles
   Feel: Warm primitive folk art · aged country store · hand-stamped
   Palette: parchment #e8d9b8 | bark #2c1f0e | barn red #7a2323
            mustard #b8872a | cream #f5ede0 | slate #3a4a5a
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rye&family=Lora:ital,wght@0,400;0,600;1,400&family=Special+Elite&family=Josefin+Slab:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #f5ede0;
  --parchment:  #e8d9b8;
  --parchment2: #d4c49a;
  --bark:       #2c1f0e;
  --bark2:      #3d2c14;
  --brown:      #5c3d1e;
  --red:        #7a2323;
  --red2:       #5e1a1a;
  --mustard:    #b8872a;
  --mustard2:   #8f6820;
  --slate:      #3a4a5a;
  --tan:        #c4a96e;
  --border:     rgba(44,31,14,.18);
  --border2:    rgba(44,31,14,.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', serif;
  background: var(--cream);
  color: var(--bark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Rye', serif; line-height: 1.15; }
h4, h5     { font-family: 'Josefin Slab', serif; font-weight: 600; letter-spacing: .06em; }
.stamp-text { font-family: 'Special Elite', cursive; }

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.5rem); }

a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--mustard2); }

img { display: block; max-width: 100%; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }

/* ── Ruled dividers ── */
.ruled {
  display: flex; align-items: center; gap: 14px; margin: 16px 0;
}
.ruled::before, .ruled::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--tan), transparent);
}
.ruled-icon { color: var(--mustard); font-size: .9rem; flex-shrink: 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 11px 28px;
  font-family: 'Josefin Slab', serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 2px solid;
  cursor: pointer;
  transition: all .22s;
}
.btn-primary {
  background: var(--red); border-color: var(--red); color: var(--cream);
}
.btn-primary:hover { background: var(--red2); border-color: var(--red2); color: var(--cream); }

.btn-mustard {
  background: var(--mustard); border-color: var(--mustard); color: var(--bark);
}
.btn-mustard:hover { background: var(--mustard2); border-color: var(--mustard2); color: var(--bark); }

.btn-outline {
  background: transparent; border-color: var(--bark); color: var(--bark);
}
.btn-outline:hover { background: var(--bark); color: var(--cream); }

.btn-outline-light {
  background: transparent; border-color: var(--cream); color: var(--cream);
}
.btn-outline-light:hover { background: var(--cream); color: var(--bark); }

.btn-amazon {
  background: #f5a623; border-color: #d4891a; color: var(--bark);
}
.btn-amazon:hover { background: #d4891a; border-color: #b8740e; color: var(--bark); }

/* ── Navigation ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--bark);
  border-bottom: 3px solid var(--mustard);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 68px;
}
.nav-logo {
  font-family: 'Rye', serif; font-size: .95rem;
  color: var(--cream); line-height: 1.25; letter-spacing: .02em;
}
.nav-logo span {
  display: block; font-family: 'Special Elite', cursive;
  font-size: .65rem; color: var(--mustard);
  letter-spacing: .18em; text-transform: uppercase;
}
.nav-links {
  display: flex; list-style: none; gap: 32px; align-items: center;
}
.nav-links a {
  font-family: 'Josefin Slab', serif; font-weight: 600;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--parchment);
}
.nav-links a:hover, .nav-links a.active { color: var(--mustard); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cream); margin: 5px 0; transition: .3s; }

/* ── Hero ── */
.hero {
  min-height: 92vh;
  background: var(--parchment);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 96px; /* 68px nav + ~44px announce bar, tightened */
  /* Aged paper feel */
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(196,169,110,.45) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(122,35,35,.08) 0%, transparent 55%);
}

/* Top decorative border stripe */
.hero::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 68px;
  height: 5px;
  background: repeating-linear-gradient(90deg,
    var(--red) 0px, var(--red) 24px,
    var(--mustard) 24px, var(--mustard) 36px,
    var(--bark) 36px, var(--bark) 60px
  );
  z-index: 2;
}

/* Bottom border */
.hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg,
    var(--bark) 0px, var(--bark) 24px,
    var(--mustard) 24px, var(--mustard) 36px,
    var(--red) 36px, var(--red) 60px
  );
  z-index: 2;
}

.hero-content {
  position: relative; z-index: 2; max-width: 640px;
}

/* ── Collection Announcement Bar ── */
.announce-bar {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: linear-gradient(90deg, var(--red2) 0%, var(--red) 45%, #9e2b2b 100%);
  border-bottom: 2px solid var(--mustard);
  overflow: hidden;
}
/* shimmer sweep */
.announce-bar::before {
  content: '';
  position: absolute; top: 0; left: -50%; width: 35%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  animation: announce-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes announce-shimmer {
  0%     { left: -50%; }
  60%,100% { left: 115%; }
}

.announce-bar-inner {
  display: flex; align-items: center; justify-content: center;
  padding: 11px 24px;
}

.announce-text {
  font-family: 'Rye', serif;
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  letter-spacing: .06em; color: var(--cream);
  text-align: center;
}
.announce-small {
  font-family: 'Special Elite', cursive;
  font-size: clamp(.7rem, 1.4vw, .85rem);
  letter-spacing: .14em; color: var(--parchment2);
  vertical-align: middle;
}
.announce-small em {
  font-style: normal;
  color: var(--parchment2);
}

.hero-overline {
  font-family: 'Special Elite', cursive;
  font-size: clamp(.72rem, 1.8vw, .92rem); letter-spacing: .18em;
  text-transform: uppercase; color: var(--brown);
  margin-bottom: 20px;
}

.hero h1 { color: var(--bark); margin-bottom: 10px; }
.hero h1 em { font-style: normal; color: var(--red); display: block; }

.hero-sub {
  font-family: 'Lora', serif; font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--brown);
  margin-bottom: 40px; max-width: 560px; line-height: 1.85;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-cta .btn { font-size: .9rem; padding: 14px 32px; }

/* Aged stamp on hero */
.hero-stamp {
  position: absolute; right: 100px; top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  z-index: 3;
  width: 200px; height: 200px;
  border: 3px solid var(--red);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  opacity: .75;
}
.hero-stamp::before {
  content: '';
  position: absolute; inset: 9px;
  border: 1px dashed var(--red);
  border-radius: 50%; opacity: .6;
}
.hero-stamp .stamp-text {
  font-family: 'Rye', serif;
  font-size: 1.3rem; color: var(--red);
  line-height: 1.45; text-transform: uppercase;
}
.hero-stamp .stamp-year {
  font-family: 'Rye', serif; font-size: 1.3rem; color: var(--red);
}

/* ── Trust strip ── */
.trust-strip {
  background: var(--bark);
  border-bottom: 2px solid var(--mustard);
  padding: 13px 0;
}
.trust-strip .trust-item { color: var(--parchment); }
.trust-strip .trust-icon { color: var(--mustard); }
.trust-inner {
  display: flex; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  font-family: 'Josefin Slab', serif; font-weight: 600;
  font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brown);
  display: flex; align-items: center; gap: 8px;
}
.trust-item .trust-icon { color: var(--red); font-size: 1rem; }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { color: var(--bark); margin-bottom: 8px; }
.section-header .eyebrow {
  font-family: 'Special Elite', cursive;
  font-size: .72rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--mustard2);
  margin-bottom: 8px;
}
.section-header p { font-style: italic; color: var(--brown); max-width: 480px; margin: 0 auto; font-size: .95rem; }

/* ── Collections ── */
.collections-section { background: var(--cream); }

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.coll-card {
  background: var(--parchment);
  border: 2px solid var(--border2);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.coll-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(44,31,14,.18);
}
.coll-thumb {
  width: 100%; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; background: var(--bark2);
  position: relative; overflow: hidden;
}
.coll-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(44,31,14,.55));
}
.coll-body { padding: 20px 22px 24px; }
.coll-tag {
  font-family: 'Special Elite', cursive;
  font-size: .65rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mustard2);
  margin-bottom: 6px;
}
.coll-card h3 { color: var(--bark); margin-bottom: 8px; font-size: 1.1rem; }
.coll-card p  { font-size: .88rem; color: var(--brown); margin-bottom: 16px; line-height: 1.65; }
.coll-coming {
  display: inline-block;
  font-family: 'Special Elite', cursive;
  font-size: .65rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--parchment2);
  background: var(--bark2); padding: 4px 12px;
}

/* ── Most Popular / Urgency ── */
.popular-section { background: var(--parchment); border-top: 2px solid var(--border2); border-bottom: 2px solid var(--border2); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.prod-card {
  background: var(--cream);
  border: 1px solid var(--border2);
  overflow: hidden;
  position: relative;
  transition: transform .22s, box-shadow .22s;
}
.prod-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(44,31,14,.15);
}

.prod-thumb {
  width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative;
}

/* Urgency banner */
.prod-urgency {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(44,31,14,.78);
  padding: 5px 10px;
  font-family: 'Special Elite', cursive;
  font-size: .68rem; color: var(--parchment);
  letter-spacing: .06em;
  display: flex; align-items: center; gap: 6px;
}
.fire { color: #e8872a; }

.prod-badge {
  position: absolute; top: 10px; left: 10px;
  font-family: 'Josefin Slab', serif; font-weight: 700;
  font-size: .6rem; letter-spacing: .14em;
  text-transform: uppercase; padding: 4px 9px;
}
.badge-popular { background: var(--red); color: var(--cream); }
.badge-new     { background: var(--slate); color: var(--cream); }

.prod-body { padding: 14px 16px 18px; }
.prod-collection {
  font-family: 'Special Elite', cursive;
  font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 4px;
}
.prod-card h4  { font-size: .9rem; color: var(--bark); margin-bottom: 5px; line-height: 1.3; }
.prod-card p   { font-size: .8rem; color: var(--brown); margin-bottom: 12px; font-style: italic; }

.prod-footer { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.prod-actions { display: flex; gap: 8px; }
.prod-price  {
  font-family: 'Josefin Slab', serif; font-weight: 700;
  font-size: 1rem; color: var(--red);
}
.prod-price .was {
  font-size: .75rem; color: var(--tan);
  text-decoration: line-through; margin-left: 5px; font-weight: 400;
}
.prod-stars {
  font-size: .75rem; color: var(--mustard);
  display: flex; align-items: center; gap: 3px; margin-bottom: 6px;
}
.prod-sold {
  font-family: 'Special Elite', cursive;
  font-size: .65rem; color: var(--brown);
}

/* ── Newsletter ── */
.newsletter-section {
  background: var(--bark);
  position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184,135,42,.1) 0%, transparent 65%);
}
.newsletter-inner {
  text-align: center; max-width: 520px;
  margin: 0 auto; position: relative; z-index: 1;
}
.newsletter-inner h2 { color: var(--cream); margin-bottom: 10px; }
.newsletter-inner p  { font-style: italic; color: var(--parchment2); margin-bottom: 28px; font-size: .95rem; }

.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input[type="email"] {
  flex: 1; min-width: 230px;
  padding: 11px 18px;
  background: rgba(245,237,224,.1);
  border: 1px solid rgba(245,237,224,.35);
  color: var(--cream); font-family: 'Lora', serif;
  font-size: .9rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(245,237,224,.45); }
.newsletter-form input:focus { border-color: var(--mustard); background: rgba(245,237,224,.15); }

.newsletter-fine {
  font-size: .72rem; color: rgba(245,237,224,.4);
  margin-top: 12px; font-style: italic;
}

/* Discount offer */
.discount-pill {
  display: inline-block;
  background: var(--red);
  color: var(--cream);
  font-family: 'Josefin Slab', serif;
  font-weight: 700; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 16px; margin-bottom: 20px;
}

/* ── Footer ── */
.site-footer {
  background: var(--bark2);
  border-top: 3px solid var(--mustard);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; margin-bottom: 36px;
}
.footer-brand .logo-name {
  font-family: 'Rye', serif; font-size: .9rem; color: var(--cream); margin-bottom: 4px;
}
.footer-brand .logo-sub {
  font-family: 'Special Elite', cursive; font-size: .62rem;
  color: var(--mustard); letter-spacing: .18em; text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.footer-brand p { font-size: .83rem; color: var(--parchment2); font-style: italic; line-height: 1.7; }
.footer-col h4 {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mustard); margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a  { font-size: .84rem; color: var(--parchment2); }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(245,237,224,.12);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .74rem; color: rgba(245,237,224,.35); }
.footer-social { display: flex; gap: 18px; }
.footer-social a {
  font-family: 'Josefin Slab', serif; font-size: .72rem;
  letter-spacing: .1em; color: var(--parchment2);
}
.footer-social a:hover { color: var(--mustard); }

/* ── Collection page hero ── */
.page-hero {
  min-height: 50vh; display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding: 68px 0 52px;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow {
  font-family: 'Special Elite', cursive;
  font-size: .72rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--mustard);
  margin-bottom: 8px;
}
.page-hero h1 { color: var(--cream); margin-bottom: 14px; }
.page-hero .lead { font-style: italic; color: var(--parchment2); font-size: .95rem; max-width: 520px; }

/* Filter bar */
.filter-bar {
  background: var(--parchment); border-bottom: 2px solid var(--border2);
  padding: 14px 0; position: sticky; top: 68px; z-index: 100;
}
.filter-bar-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-label {
  font-family: 'Josefin Slab', serif; font-weight: 700;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--brown); margin-right: 6px;
}
.filter-chip {
  padding: 6px 16px; border: 1px solid var(--border2);
  background: transparent; color: var(--brown);
  font-family: 'Josefin Slab', serif; font-weight: 600;
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.filter-chip:hover, .filter-chip.active {
  background: var(--bark); border-color: var(--bark); color: var(--cream);
}

/* Collection product listing */
.coll-products-section { background: var(--cream); }

/* Bundle */
.bundle-card {
  background: var(--parchment);
  border: 2px solid var(--mustard);
  padding: 36px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 36px; align-items: center;
  margin-top: 44px; position: relative;
}
.bundle-label {
  position: absolute; top: -14px; left: 32px;
  background: var(--red); color: var(--cream);
  font-family: 'Josefin Slab', serif; font-weight: 700;
  font-size: .65rem; letter-spacing: .18em;
  text-transform: uppercase; padding: 5px 16px;
}
.bundle-card h3 { color: var(--bark); margin-bottom: 12px; font-size: 1.1rem; }
.bundle-card p  { font-size: .88rem; color: var(--brown); margin-bottom: 18px; font-style: italic; }
.bundle-items   { list-style: none; margin-bottom: 22px; }
.bundle-items li {
  padding: 6px 0; border-bottom: 1px solid var(--border);
  font-size: .82rem; color: var(--brown);
  display: flex; align-items: center; gap: 9px;
}
.bundle-items li::before { content: '✦'; color: var(--mustard); font-size: .55rem; }
.bundle-price-box {
  text-align: center; padding: 28px; background: var(--cream); border: 1px solid var(--border2);
}
.bundle-was  { font-size: .82rem; color: var(--tan); text-decoration: line-through; margin-bottom: 4px; }
.bundle-big  { font-family: 'Rye', serif; font-size: 2rem; color: var(--red); }
.bundle-save {
  font-family: 'Josefin Slab', serif; font-weight: 700;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brown); margin: 8px 0 22px;
}

/* How it works */
.how-section { background: var(--parchment); border-top: 2px solid var(--border2); }
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 28px; text-align: center;
}
.step-icon { font-size: 2.2rem; margin-bottom: 14px; }
.step-num {
  font-family: 'Special Elite', cursive;
  font-size: .65rem; letter-spacing: .2em; color: var(--mustard2); margin-bottom: 4px;
}
.steps-grid h4 { color: var(--bark); margin-bottom: 8px; font-size: .85rem; }
.steps-grid p  { font-size: .82rem; color: var(--brown); font-style: italic; }

/* About page */
.prose { font-size: .94rem; line-height: 1.88; color: var(--brown); max-width: 660px; }
.prose p { margin-bottom: 18px; }
.prose h3 {
  font-family: 'Josefin Slab', serif; color: var(--bark);
  margin: 28px 0 10px; font-size: .95rem; letter-spacing: .08em;
}
.prose strong { color: var(--bark); }

.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr));
  gap: 20px;
}
.value-card {
  border: 1px solid var(--border2); padding: 28px 22px;
  text-align: center; background: var(--cream);
}
.value-card:hover { border-color: var(--mustard); }
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h4 { color: var(--bark); margin-bottom: 8px; font-size: .8rem; }
.value-card p  { font-size: .8rem; color: var(--brown); font-style: italic; line-height: 1.7; }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-stamp { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bundle-card { grid-template-columns: 1fr; }
  .about-cols { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .trust-inner { gap: 20px; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 68px 0 0;
    background: var(--bark); align-items: center;
    justify-content: center; gap: 36px; z-index: 999;
  }
  .nav-links.open a { font-size: 1.05rem; }
}
