/* Feel Like You — Guides
   Shared stylesheet for all packing-guide pages.
   Editorial-calm: warm paper, deep ink, restrained deep-green accent. */

:root {
  color-scheme: light;
  --paper:      #F5F3EC;
  --paper-2:    #EFEBE1;
  --ink:        #1C1A17;
  --stone:      #8B8578;
  --line:       #E1DBCF;
  --accent:     #384A40;
  --accent-2:   #556B5C;
  --tint:       #E7EAE3;
  --maxw:       46rem;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ---- Top bar ---- */
.bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}
.bar nav a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--stone);
  transition: color .15s ease;
}
.bar nav a:hover { color: var(--accent); }

/* ---- Layout ---- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

/* ---- Article hero ---- */
.hero { padding: 3.5rem 0 2rem; border-bottom: 1px solid var(--line); }
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 1.2rem;
}
h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 1.1rem;
}
.dek {
  font-size: 1.18rem;
  line-height: 1.6;
  color: #45413a;
  margin: 0 0 1.5rem;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---- Body typography ---- */
.wrap h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 3rem 0 0.4rem;
}
.wrap p { margin: 1rem 0; }
.wrap a.inline { color: var(--accent); text-underline-offset: 3px; }

/* ---- At a glance panel ---- */
.glance {
  margin: 2.5rem 0 0.5rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper-2);
}
.glance h2 {
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.glance dl { margin: 0; padding: 0.4rem 1.4rem 1rem; }
.glance div {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.glance div:last-child { border-bottom: 0; }
.glance dt {
  flex: 0 0 8.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0;
}
.glance dd { margin: 0; font-size: 0.98rem; }

/* ---- Product pick card ---- */
.pick {
  margin: 1.4rem 0;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
  background: #fff;
}
.pick .tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: block;
  margin-bottom: 0.3rem;
}
.pick .item {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.pick .item:hover { color: var(--accent); }
.pick .shop {
  float: right;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  white-space: nowrap;
}
.pick .shop:hover { text-decoration: underline; }
.pick .note { margin: 0.5rem 0 0; font-size: 0.92rem; color: #55514a; }

/* ---- Capsule checklist ---- */
.capsule {
  margin: 2rem 0;
  padding: 1.6rem 1.6rem 1.2rem;
  background: var(--tint);
  border-radius: 2px;
}
.capsule h2 { margin-top: 0; }
.capsule ul { list-style: none; margin: 0.8rem 0 0; padding: 0; }
.capsule li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
  border-bottom: 1px solid rgba(56,74,64,0.14);
  font-size: 0.98rem;
}
.capsule li:last-child { border-bottom: 0; }
.capsule li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.95rem;
  width: 0.6rem; height: 0.6rem;
  border: 1.5px solid var(--accent);
  border-radius: 1px;
}

/* ---- Closing CTA ---- */
.cta {
  margin: 3.5rem 0 0;
  padding: 2.2rem 1.8rem;
  background: var(--accent);
  color: #F3F1EA;
  border-radius: 2px;
  text-align: center;
}
.cta h2 {
  font-family: "Fraunces", Georgia, serif;
  color: #fff;
  margin: 0 0 0.6rem;
  font-size: 1.5rem;
}
.cta p { margin: 0 auto 1.3rem; max-width: 30rem; color: #DCE0D7; }
.cta a.button {
  display: inline-block;
  background: #F3F1EA;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 2px;
  transition: opacity .15s ease;
}
.cta a.button:hover { opacity: 0.88; }

.disclosure {
  margin: 1.6rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--stone);
  text-align: center;
}

/* ---- Site footer ---- */
.foot {
  border-top: 1px solid var(--line);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--stone);
}
.foot a { color: var(--accent); text-decoration: none; }

/* ---- Guides hub ---- */
.hub-hero { padding: 4rem 0 2.5rem; text-align: center; border-bottom: 1px solid var(--line); }
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1.2rem;
  padding: 2.5rem 0 0;
}
.card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 1.5rem;
  background: #fff;
  transition: border-color .15s ease, transform .15s ease;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card .eyebrow { margin-bottom: 0.7rem; }
.card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}
.card p { margin: 0; font-size: 0.92rem; color: #55514a; line-height: 1.55; }

@media (max-width: 480px) {
  .pick .shop { float: none; display: block; margin-top: 0.6rem; }
  .glance dt { flex-basis: 6.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

*:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
