/* ============================================
   Adventures with 9 — Stylesheet
   Warm editorial adventure aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;600;700&display=swap');

:root {
  --green:      #1e3d2f;
  --green-mid:  #2e5c42;
  --orange:     #d9622b;
  --orange-lt:  #f0a06a;
  --cream:      #faf6ef;
  --cream-dark: #f0e9de;
  --text:       #2a2a2a;
  --text-muted: #7a6e62;
  --border:     #e0d6c8;
  --white:      #ffffff;
  --shadow:     0 4px 24px rgba(30,61,47,.10);
  --radius:     12px;
  --nav-h:      70px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
a  { color: var(--green); text-decoration: none; }
a:hover { color: var(--orange); }
strong { font-weight: 700; }

/* ── Utility ── */
.container    { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section      { padding: 72px 0; }
.section-sm   { padding: 40px 0; }
.text-center  { text-align: center; }
.text-muted   { color: var(--text-muted); }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

.label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}
.section-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 56px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.section-heading.centered { display: block; text-align: center; }
.section-heading.centered::after { left: 50%; transform: translateX(-50%); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  transition: all .2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,61,47,.25);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover {
  background: #c0541e;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,98,43,.3);
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
}
.nav-logo-sub {
  font-family: 'Nunito', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  background: var(--cream);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cart-btn {
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
}
.nav-cart-btn:hover {
  background: var(--green-mid);
  color: var(--white);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--orange); }

/* ── Hero ── */
.hero {
  background: var(--green);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-text { color: var(--white); }
.hero-label {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: var(--orange-lt);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  aspect-ratio: 4/3;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-placeholder {
  font-size: 5rem;
  opacity: .4;
}

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30,61,47,.15);
}
.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--cream-dark);
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-muted);
}
.blog-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-date {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--green); }
.blog-card p { font-size: .9rem; color: var(--text-muted); flex: 1; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--green);
  margin-top: 16px;
}
.read-more:hover { color: var(--orange); gap: 8px; }

/* ── Featured Post ── */
.featured-post {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  margin-bottom: 40px;
}
.featured-post-img {
  background: var(--cream-dark);
  overflow: hidden;
}
.featured-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-post-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ── About Strip ── */
.about-strip {
  background: var(--green);
  color: var(--white);
  padding: 80px 0;
}
.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-strip h2 { color: var(--white); margin-bottom: 16px; }
.about-strip p { color: rgba(255,255,255,.85); margin-bottom: 24px; }
.about-strip-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.about-strip-photo img { width: 100%; display: block; }

/* ── Shop / Products ── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30,61,47,.15);
}
.product-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.product-card-body {
  padding: 20px;
}
.product-card h4 { margin-bottom: 4px; font-size: 1rem; }
.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
}
.product-price .free { color: var(--orange); }

/* ── Shopping List ── */
.shopping-list-section { padding: 56px 0; }
.shopping-category {
  margin-bottom: 48px;
}
.shopping-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.shopping-category-header .emoji { font-size: 1.6rem; }
.shopping-category-header h3 {
  font-size: 1.25rem;
  color: var(--green);
}
.shopping-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.shopping-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 8px;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: all .2s;
}
.shopping-item:hover {
  box-shadow: 0 4px 16px rgba(30,61,47,.12);
  transform: translateY(-1px);
}
.shopping-item .check {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  cursor: pointer;
}
.shopping-item .check.checked {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.shopping-item span { font-size: .9rem; font-weight: 600; }
.affiliate-notice {
  background: var(--cream-dark);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 40px;
  line-height: 1.6;
}

/* ── Blog Post ── */
.post-hero {
  background: var(--green);
  padding: 64px 0;
  color: var(--white);
}
.post-hero h1 { color: var(--white); margin-bottom: 16px; }
.post-hero .post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.post-meta-item {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  font-weight: 600;
}
.post-body { max-width: 780px; margin: 0 auto; padding: 60px 24px; }
.post-body h2 { margin: 40px 0 16px; }
.post-body h3 { margin: 28px 0 12px; color: var(--green); }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 1rem; }
.post-body li { margin-bottom: 6px; }
.post-body .emoji-heading {
  font-size: 1.4rem;
  margin: 40px 0 12px;
  font-family: 'Playfair Display', serif;
  color: var(--green);
}
.post-body blockquote {
  border-left: 4px solid var(--orange);
  padding: 12px 20px;
  background: var(--cream-dark);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-muted);
  margin: 24px 0;
}

/* ── Page Header ── */
.page-header {
  background: var(--green);
  padding: 56px 0;
  color: var(--white);
}
.page-header h1 { color: var(--white); margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 560px; }

/* ── About Page ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-story-photo img { width: 100%; display: block; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-card .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green);
  display: block;
}
.stat-card .desc {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── Footer ── */
footer {
  background: var(--green);
  color: rgba(255,255,255,.8);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo-text { color: var(--white); font-size: 1.3rem; }
.footer-brand .nav-logo-sub { color: var(--orange-lt); }
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.6;
}
.footer-col h5 {
  font-family: 'Nunito', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--orange-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid,
  .about-strip-grid,
  .about-story,
  .featured-post { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn { display: none; }
  .blog-grid,
  .shop-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp .55s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
