/*
Theme Name: Eco-Friendly Homemaking
Theme URI: https://ecofriendlyhomemaking.com
Author: Eco-Friendly Homemaking
Author URI: https://ecofriendlyhomemaking.com
Description: A warm, organic editorial lifestyle site for eco-friendly homemaking, design, and home life.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eco-friendly-homemaking
Tags: lifestyle, homemaking, eco, organic, editorial, blog
*/

/* =============================================
   DESIGN TOKENS — Organic Warmth
   ============================================= */
:root {
  /* Palette */
  --linen:        #F7F3EC;
  --linen-mid:    #F0EBE0;
  --linen-deep:   #E5DDD0;
  --linen-dark:   #D8CEBC;
  --sage:         #4A7A5A;
  --sage-mid:     #3D6649;
  --sage-light:   #6A9A7A;
  --sage-pale:    #EBF2EC;
  --terra:        #B85C3A;
  --terra-light:  #D4724E;
  --terra-pale:   #FAF0EB;
  --clay:         #C4884A;
  --clay-light:   #D9A066;
  --clay-pale:    #FBF3E8;
  --moss:         #6B7C50;
  --moss-pale:    #F0F2EB;
  --sky:          #5A8A9F;
  --sky-pale:     #EBF3F7;
  --charcoal:     #2C2C28;
  --charcoal-mid: #3E3E3A;
  --ink-light:    #6A6860;
  --stone:        #9A978E;
  --stone-light:  #C4C0B8;
  --border:       #E0D8CC;
  --border-light: #EDE8E0;
  --white:        #FFFFFF;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;

  /* Motion */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
  --fast:       all 0.16s ease;

  /* Layout */
  --max-w:    1380px;
  --gutter:   clamp(1.25rem, 5vw, 5rem);
  --radius:   4px;
  --radius-lg: 12px;
  --radius-xl: 24px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--linen);
  color: var(--charcoal-mid);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; }
a    { color: var(--sage); text-decoration: none; transition: var(--fast); }
a:hover { color: var(--sage-mid); }
ul, ol { list-style: none; }
p  { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 6.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 2.5rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.5rem); font-weight: 600; }

.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

.kicker {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 0.65rem;
}
.kicker--sage  { color: var(--sage); }
.kicker--clay  { color: var(--clay); }
.kicker--stone { color: var(--stone); }
.kicker--white { color: rgba(255,255,255,0.65); }

/* Green rule */
.sage-rule {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--sage);
  margin: 1.1rem 0;
  border-radius: 1px;
}
.sage-rule--center { margin-left: auto; margin-right: auto; }
.sage-rule--terra  { background: var(--terra); }
.sage-rule--clay   { background: var(--clay); }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.section     { padding: clamp(4rem, 8vw, 8rem) 0; }
.section--sm { padding: clamp(2.5rem, 5vw, 5rem) 0; }
.section--xs { padding: clamp(1.5rem, 3vw, 3rem) 0; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.82rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-sage {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-sage:hover {
  background: var(--sage-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74,122,90,0.28);
}
.btn-terra {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.btn-terra:hover {
  background: var(--terra-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,92,58,0.28);
}
.btn-clay {
  background: var(--clay);
  color: var(--white);
  border-color: var(--clay);
}
.btn-clay:hover {
  background: var(--clay-light);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-sage {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}
.btn-outline-sage:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-terra {
  background: transparent;
  color: var(--terra);
  border-color: var(--terra);
}
.btn-outline-terra:hover {
  background: var(--terra);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-charcoal {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-charcoal:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-linen {
  background: var(--linen);
  color: var(--charcoal);
  border-color: var(--linen);
}
.btn-linen:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn-lg  { padding: 0.95rem 2.1rem; font-size: 0.82rem; }
.btn-sm  { padding: 0.5rem 1.1rem; font-size: 0.68rem; }
.btn-arrow::after { content: ' →'; display: inline-block; transition: transform 0.18s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* =============================================
   IMAGE PLACEHOLDERS
   ============================================= */
.img-ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--linen-mid) 0%, var(--linen-deep) 100%);
  position: relative;
  overflow: hidden;
}
.img-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 65% 35%, rgba(74,122,90,0.07) 0%, transparent 60%);
}
.img-ph-txt {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0.55;
  z-index: 1;
  text-align: center;
  padding: 1rem;
  line-height: 2;
}
.img-ph--sage { background: linear-gradient(135deg, #3D6649 0%, #2E4F38 100%); }
.img-ph--sage .img-ph-txt { color: rgba(255,255,255,0.3); }
.img-ph--dark { background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%); }
.img-ph--dark .img-ph-txt { color: rgba(255,255,255,0.25); }

/* =============================================
   HEADER
   ============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--linen);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(247,243,236,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(44,44,40,0.06);
}

/* Top message bar */
.header-topbar {
  background: var(--sage);
  padding: 0.4rem 0;
  text-align: center;
}
.header-topbar p {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.header-topbar a { color: rgba(255,255,255,0.95); text-decoration: underline; text-underline-offset: 3px; }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  text-align: center;
}
.logo-leaf { font-size: 1.3rem; margin-bottom: 0.1rem; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  line-height: 1;
  display: block;
}
.logo-name em { font-style: italic; color: var(--sage); }
.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-top: 3px;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: color 0.18s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--sage);
  transition: width 0.22s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--sage-mid); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--linen);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(-100%);
  transition: transform 0.42s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--charcoal);
  font-style: italic;
}
.mobile-nav a:hover { color: var(--sage); }

/* =============================================
   HERO — Editorial Magazine Style
   ============================================= */
.hero {
  background: var(--linen);
  overflow: hidden;
}

/* Organic texture strip at top */
.hero-texture {
  height: 6px;
  background: linear-gradient(to right, var(--terra), var(--clay), var(--sage), var(--moss), var(--terra));
  opacity: 0.7;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 88vh;
  align-items: stretch;
}

/* Left text panel */
.hero-text {
  padding: clamp(3rem, 6vw, 7rem) clamp(2rem, 4vw, 5rem) clamp(3rem, 6vw, 7rem) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Botanical watermark */
.hero-text::before {
  content: '🌿';
  position: absolute;
  bottom: 3rem;
  left: var(--gutter);
  font-size: 8rem;
  opacity: 0.04;
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line { width: 28px; height: 1.5px; background: var(--terra); }
.hero-eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terra);
}

.hero-title {
  font-size: clamp(3rem, 6.5vw, 7rem);
  color: var(--charcoal);
  line-height: 1.06;
  margin-bottom: 1.5rem;
}
.hero-title .italic-line {
  font-style: italic;
  color: var(--sage-mid);
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.82;
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Category pill strip */
.hero-cats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.hero-cat-pill {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--ink-light);
  text-decoration: none;
  transition: var(--fast);
}
.hero-cat-pill:hover { border-color: var(--sage); color: var(--sage); }
.hero-cat-pill.active { background: var(--sage); color: var(--white); border-color: var(--sage); }

/* Right: Featured article image */
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image .img-ph { height: 100%; min-height: 500px; }
/* Overlay caption bar */
.hero-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(44,44,40,0.85) 0%, transparent 100%);
  padding: 3rem 2.5rem 2rem;
  z-index: 1;
}
.hero-caption-tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay-light);
  display: block;
  margin-bottom: 0.4rem;
}
.hero-caption-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.25;
  display: block;
  margin-bottom: 0.5rem;
}
.hero-caption-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* =============================================
   ARTICLE / POST CARDS
   ============================================= */
.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  box-shadow: 0 10px 36px rgba(44,44,40,0.1);
  transform: translateY(-4px);
  border-color: transparent;
}
.article-card__img {
  overflow: hidden;
  background: var(--linen-mid);
  flex-shrink: 0;
  position: relative;
}
.article-card__img .img-ph { transition: transform 0.55s var(--ease); }
.article-card:hover .article-card__img .img-ph { transform: scale(1.05); }

/* Category badge */
.cat-badge {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  z-index: 2;
}
.badge-eco     { background: var(--sage); color: var(--white); }
.badge-design  { background: var(--terra); color: var(--white); }
.badge-kitchen { background: var(--clay); color: var(--white); }
.badge-garden  { background: var(--moss); color: var(--white); }
.badge-tips    { background: var(--charcoal); color: var(--white); }
.badge-living  { background: var(--sky); color: var(--white); }
.badge-family  { background: #9B6B9B; color: var(--white); }

.article-card__body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.article-card__cat  { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.45rem; display: block; }
.article-card__cat--sage { color: var(--sage); }
.article-card__cat--clay { color: var(--clay); }
.article-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.28;
  margin-bottom: 0.5rem;
  flex: 1;
  transition: color 0.18s;
}
.article-card:hover .article-card__title { color: var(--sage-mid); }
.article-card__excerpt { font-size: 0.87rem; color: var(--ink-light); line-height: 1.65; margin-bottom: 0.85rem; }
.article-card__meta {
  font-size: 0.68rem;
  color: var(--stone);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}
.meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--stone-light); flex-shrink: 0; }

/* =============================================
   HERO ARTICLE (large featured)
   ============================================= */
.hero-article {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: var(--transition);
  min-height: 420px;
}
.hero-article:hover { box-shadow: 0 14px 44px rgba(44,44,40,0.1); transform: translateY(-3px); border-color: transparent; }
.hero-article__img { overflow: hidden; }
.hero-article__img .img-ph { height: 100%; min-height: 400px; transition: transform 0.55s var(--ease); }
.hero-article:hover .hero-article__img .img-ph { transform: scale(1.04); }
.hero-article__body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.hero-article__title { font-size: clamp(1.5rem, 2.5vw, 2.5rem); font-weight: 500; margin-bottom: 0.75rem; }
.hero-article__excerpt { font-size: 0.93rem; color: var(--ink-light); line-height: 1.72; margin-bottom: 1.5rem; }

/* =============================================
   EDITORIAL GRID SECTIONS
   ============================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

/* Magazine-style 2+1 grid */
.mag-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}
.mag-grid-secondary { display: flex; flex-direction: column; gap: 1.5rem; }

/* =============================================
   CATEGORY SECTION HEADERS
   ============================================= */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-header h2 { margin: 0; }
.section-header-left {}

/* =============================================
   SIDEBAR ARTICLE (horizontal card)
   ============================================= */
.sidebar-article {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: var(--fast);
}
.sidebar-article:first-child { padding-top: 0; }
.sidebar-article:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-article:hover .sidebar-article__title { color: var(--sage); }
.sidebar-article__img {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.sidebar-article__img .img-ph { height: 72px; }
.sidebar-article__cat { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); display: block; margin-bottom: 0.2rem; }
.sidebar-article__title { font-family: var(--font-display); font-size: 0.98rem; font-weight: 500; color: var(--charcoal); line-height: 1.28; transition: color 0.18s; }
.sidebar-article__meta { font-size: 0.66rem; color: var(--stone); margin-top: 0.25rem; }

/* =============================================
   NEWSLETTER / EMAIL CAPTURE
   ============================================= */
.newsletter-section {
  background: var(--sage-mid);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '🌿🌱🍃';
  position: absolute;
  right: 3rem; top: 50%;
  transform: translateY(-50%);
  font-size: 6rem;
  opacity: 0.08;
  pointer-events: none;
  letter-spacing: 1rem;
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 3.5rem); margin-bottom: 0.75rem; }
.newsletter-inner p  { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.02rem; }
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.18); }
.newsletter-perks {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.newsletter-perk { font-size: 0.72rem; color: rgba(255,255,255,0.6); font-weight: 500; display: flex; align-items: center; gap: 0.35rem; }
.newsletter-perk::before { content: '✓'; color: rgba(255,255,255,0.85); font-weight: 700; }

/* =============================================
   TIPS / HOW-TO CARDS
   ============================================= */
.tip-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.tip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage);
}
.tip-card:nth-child(2)::before { background: var(--terra); }
.tip-card:nth-child(3)::before { background: var(--clay); }
.tip-card:nth-child(4)::before { background: var(--moss); }
.tip-card:hover { box-shadow: 0 8px 28px rgba(44,44,40,0.08); transform: translateY(-3px); border-color: transparent; }
.tip-icon { font-size: 1.75rem; margin-bottom: 0.85rem; display: block; }
.tip-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--linen-dark);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-style: italic;
}
.tip-cat { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.35rem; display: block; }
.tip-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--charcoal); margin-bottom: 0.5rem; font-weight: 500; }
.tip-desc { font-size: 0.87rem; color: var(--ink-light); line-height: 1.65; margin: 0; }

/* =============================================
   SHOP / PRODUCT RECOMMENDATION STRIP
   ============================================= */
.shop-section { background: var(--linen-mid); }
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.product-card:hover { box-shadow: 0 8px 24px rgba(44,44,40,0.09); transform: translateY(-3px); border-color: transparent; }
.product-card__img { aspect-ratio: 1; overflow: hidden; background: var(--linen-mid); }
.product-card__img .img-ph { transition: transform 0.5s var(--ease); }
.product-card:hover .product-card__img .img-ph { transform: scale(1.06); }
.product-card__body { padding: 1.1rem; }
.product-card__tag { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra); display: block; margin-bottom: 0.25rem; }
.product-card__name { font-family: var(--font-display); font-size: 1rem; color: var(--charcoal); margin-bottom: 0.25rem; font-weight: 500; }
.product-card__desc { font-size: 0.78rem; color: var(--ink-light); line-height: 1.55; margin-bottom: 0.75rem; }
.product-card__link { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); display: flex; align-items: center; gap: 0.25rem; }
.product-card__link::after { content: '→'; transition: transform 0.18s; }
.product-card:hover .product-card__link::after { transform: translateX(4px); }

/* =============================================
   ABOUT / AUTHOR SECTION
   ============================================= */
.about-section { background: var(--linen); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}
.about-img { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 3/4; }
.about-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.about-value:hover { border-color: var(--sage); background: var(--sage-pale); }
.av-icon { font-size: 1.2rem; flex-shrink: 0; }
.av-title { font-weight: 700; font-size: 0.88rem; color: var(--charcoal); margin-bottom: 0.15rem; }
.av-desc  { font-size: 0.8rem; color: var(--ink-light); line-height: 1.55; margin: 0; }

/* =============================================
   PAGE HERO (interior pages)
   ============================================= */
.page-hero {
  background: var(--linen-mid);
  padding: clamp(5rem, 10vw, 10rem) 0 clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--terra), var(--clay), var(--sage), var(--moss));
  opacity: 0.7;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--charcoal); margin-bottom: 0.75rem; }
.page-hero p  { color: var(--ink-light); max-width: 580px; font-size: 1.02rem; margin: 0; }
.breadcrumb {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.25rem;
  display: block;
}
.breadcrumb a { color: var(--stone); }
.breadcrumb a:hover { color: var(--sage); }
.breadcrumb span { margin: 0 0.45rem; opacity: 0.45; }

/* =============================================
   BLOG LAYOUT — MAIN + SIDEBAR
   ============================================= */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.blog-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}
.sidebar-widget:last-child { margin-bottom: 0; }
.widget-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

/* Tags cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag-link {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--ink-light);
  text-decoration: none;
  transition: var(--fast);
}
.tag-link:hover { border-color: var(--sage); color: var(--sage); background: var(--sage-pale); }

/* =============================================
   CONTACT / ABOUT PAGE
   ============================================= */
.contact-section { background: var(--linen); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border-light);
  margin-bottom: 1.25rem;
}
.inquiry-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--linen);
  color: var(--charcoal);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74,122,90,0.1);
  background: var(--white);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A7A5A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--linen);
  padding-right: 2.5rem;
}
.form-success {
  background: var(--sage-pale);
  border: 1.5px solid var(--sage);
  color: var(--sage-mid);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

/* =============================================
   SINGLE POST
   ============================================= */
.post-hero {
  background: var(--linen-mid);
  padding: clamp(5rem, 10vw, 10rem) 0 clamp(2rem, 4vw, 4rem);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.post-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--terra), var(--clay), var(--sage), var(--moss));
  opacity: 0.7;
}
.post-content {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--charcoal-mid);
  max-width: 760px;
  margin: 0 auto;
}
.post-content h2 { margin: 2.5rem 0 1rem; font-size: clamp(1.5rem, 2.5vw, 2.5rem); }
.post-content h3 { margin: 2rem 0 0.75rem; font-size: clamp(1.2rem, 2vw, 1.8rem); }
.post-content p  { margin-bottom: 1.5rem; }
.post-content ul, .post-content ol { margin: 1.5rem 0 1.5rem 1.5rem; line-height: 1.85; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content blockquote {
  border-left: 3px solid var(--sage);
  padding: 1.25rem 1.75rem;
  background: var(--sage-pale);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin: 2.5rem 0;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--charcoal);
  padding: 5rem 0 0;
}
.footer-top-rule {
  height: 3px;
  background: linear-gradient(to right, var(--terra), var(--clay), var(--sage), var(--moss), var(--terra));
  opacity: 0.6;
  margin-bottom: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {}
.footer-brand .logo-name { color: rgba(255,255,255,0.88); }
.footer-brand .logo-name em { color: var(--sage-light); }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.3); }
.footer-brand p { font-size: 0.87rem; color: rgba(255,255,255,0.42); line-height: 1.75; margin-top: 1rem; max-width: 270px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a  { font-size: 0.87rem; color: rgba(255,255,255,0.38); transition: color 0.18s; }
.footer-col a:hover { color: var(--sage-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.22); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.22); }
.footer-bottom a:hover { color: var(--sage-light); }
.footer-disc { font-size: 0.64rem; color: rgba(255,255,255,0.18); }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { aspect-ratio: 16/9; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .hero-article { grid-template-columns: 1fr; }
  .hero-article__img { aspect-ratio: 16/9; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .mag-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}
