/*
Theme Name: Flour & Chalk
Theme URI: https://flourandchalk.com
Author: Flour & Chalk
Author URI: https://flourandchalk.com
Description: A warm, organic theme for Flour & Chalk — baking, gardening & mom life.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: flourandchalk
*/

/* ============================================
   BRAND TOKENS
============================================ */
:root {
  --sage:         #7fa99a;
  --sage-dark:    #5c8578;
  --sage-deeper:  #3d6158;
  --sage-light:   #a8c4bb;
  --sage-pale:    #dceae6;
  --sage-bg:      #eef4f2;
  --charcoal:     #3d3d3a;
  --charcoal-l:   #5a5a56;
  --charcoal-xl:  #8a8a84;
  --amp:          #c2d8d2;
  --cream:        #faf8f5;
  --white:        #ffffff;
  --line:         #d4e4df;
  --line-light:   #e8f0ed;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
  --font-ui:      'DM Sans', system-ui, sans-serif;

  --max-width:    1140px;
  --content-width: 780px;
  --radius:       4px;
  --radius-lg:    8px;
  --shadow:       0 2px 16px rgba(61,97,88,.1);
  --shadow-hover: 0 6px 28px rgba(61,97,88,.16);
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sage-deeper); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--charcoal);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1.4rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
li { margin-bottom: .4rem; }

blockquote {
  border-left: 3px solid var(--sage);
  padding: 1rem 0 1rem 1.8rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--sage-deeper);
}

hr { border: none; border-top: 1px solid var(--line); margin: 2.5rem 0; }

/* ============================================
   LAYOUT UTILITIES
============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   BUTTONS
============================================ */
.btn, button[type="submit"], input[type="submit"] {
  display: inline-block;
  padding: .75rem 1.8rem;
  background: var(--sage-dark);
  color: white !important;
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.btn:hover, button[type="submit"]:hover, input[type="submit"]:hover {
  background: var(--sage-deeper);
  color: white !important;
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--sage-dark);
  color: var(--sage-dark) !important;
}
.btn--outline:hover {
  background: var(--sage-dark);
  color: white !important;
}
.btn--light {
  background: white;
  color: var(--sage-deeper) !important;
}
.btn--light:hover {
  background: var(--sage-pale);
  color: var(--sage-deeper) !important;
  transform: translateY(-2px);
}

/* ============================================
   SITE HEADER & NAV
============================================ */
#site-header {
  background: var(--white);
  border-bottom: 1.5px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(61,97,88,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo img {
  height: 52px;
  width: auto;
}
.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
  letter-spacing: .02em;
  display: none;
}
.site-logo-text span {
  color: var(--sage-dark);
  font-style: italic;
}

/* Nav */
#site-nav ul {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
#site-nav a {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal-l);
  text-decoration: none;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
#site-nav a:hover,
#site-nav .current-menu-item a {
  color: var(--sage-dark);
  border-bottom-color: var(--sage);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all .3s;
}

/* ============================================
   HERO — HOMEPAGE WELCOME BANNER
============================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  overflow: hidden;
}
.hero-left {
  background: var(--sage-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5rem 5rem 7rem;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--sage-pale);
  opacity: .6;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 1.6rem;
}
.hero-title em {
  font-style: italic;
  color: var(--sage-dark);
}
.hero-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal-l);
  max-width: 400px;
  margin-bottom: 2.2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-right {
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 35% 65%, rgba(61,97,88,.3) 0%, transparent 65%);
}
.hero-emblem {
  position: relative;
  z-index: 2;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-emblem img {
  width: 200px;
  height: auto;
  border-radius: 50%;
}
.hero-emblem-text {
  text-align: center;
}
.emblem-word {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1;
  display: block;
}
.emblem-amp {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--amp);
  line-height: 1;
  display: block;
  margin: -.1rem 0;
}

/* ============================================
   CONTENT PILLARS
============================================ */
.pillars {
  background: var(--sage-bg);
  padding: 5rem 2rem;
}
.pillars-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.section-tag::before,
.section-tag::after {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--sage-light);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--charcoal);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pillar-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage);
  transition: height .3s;
}
.pillar-card:nth-child(2)::before { background: var(--sage-dark); }
.pillar-card:nth-child(3)::before { background: var(--sage-deeper); }
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  color: inherit;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-style: italic;
  color: var(--sage-pale);
  font-weight: 700;
  line-height: 1;
  margin-bottom: .6rem;
}
.pillar-card h3 {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: .6rem;
}
.pillar-card p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--charcoal-l);
  margin-bottom: 0;
}

/* ============================================
   RECENT POSTS GRID
============================================ */
.recent-posts {
  padding: 5rem 2rem;
  background: var(--cream);
}
.recent-posts-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.post-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sage-pale);
}
.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.post-card:hover .post-card-image img {
  transform: scale(1.04);
}
.post-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-card-cat {
  font-family: var(--font-ui);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: .5rem;
  text-decoration: none;
}
.post-card-cat:hover { color: var(--sage-deeper); }
.post-card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: .6rem;
}
.post-card h3 a {
  color: var(--charcoal);
  text-decoration: none;
}
.post-card h3 a:hover { color: var(--sage-dark); }
.post-card-excerpt {
  font-size: .88rem;
  color: var(--charcoal-l);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}
.post-card-meta {
  font-family: var(--font-ui);
  font-size: .7rem;
  color: var(--charcoal-xl);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.post-card-meta::before {
  content: '';
  display: block;
  height: 1px;
  flex: 1;
  background: var(--line-light);
}

/* ============================================
   NEWSLETTER BAND
============================================ */
.newsletter-band {
  background: var(--sage-dark);
  padding: 4.5rem 2rem;
  text-align: center;
}
.newsletter-band h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-style: italic;
  color: white;
  margin-bottom: .8rem;
}
.newsletter-band p {
  font-family: var(--font-ui);
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
  flex: 1;
  min-width: 200px;
  padding: .75rem 1.2rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: .9rem;
  background: rgba(255,255,255,.15);
  color: white;
  outline: none;
  border: 1.5px solid rgba(255,255,255,.25);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-form input:focus { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.2); }

/* ============================================
   MAIN CONTENT AREA + SIDEBAR
============================================ */
#main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
#main-content.no-sidebar {
  grid-template-columns: 1fr;
  max-width: var(--content-width);
}

/* ============================================
   BLOG ARCHIVE / LOOP
============================================ */
.blog-header {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1.5px solid var(--line);
}
.blog-header h1 {
  font-size: 2rem;
  margin-bottom: .4rem;
}
.blog-header p {
  color: var(--charcoal-l);
  font-size: .95rem;
  margin: 0;
}
.posts-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.post-list-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.8rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .3s, transform .3s;
}
.post-list-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.post-list-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sage-pale);
}
.post-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.post-list-item:hover .post-list-thumb img { transform: scale(1.04); }
.post-list-body {
  padding: 1.5rem 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
}
.post-list-cat {
  font-family: var(--font-ui);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: .5rem;
  text-decoration: none;
}
.post-list-body h2 {
  font-size: 1.3rem;
  margin-bottom: .7rem;
  line-height: 1.3;
}
.post-list-body h2 a { color: var(--charcoal); }
.post-list-body h2 a:hover { color: var(--sage-dark); }
.post-list-excerpt {
  font-size: .9rem;
  color: var(--charcoal-l);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1rem;
}
.read-more {
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.read-more::after {
  content: '→';
  transition: transform .2s;
}
.read-more:hover::after { transform: translateX(4px); }

/* ============================================
   SINGLE POST
============================================ */
.post-hero {
  background: var(--sage-bg);
  padding: 4rem 2rem 0;
}
.post-hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}
.post-cat-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--sage-pale);
  padding: .3rem .9rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  text-decoration: none;
}
.post-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.post-meta {
  font-family: var(--font-ui);
  font-size: .78rem;
  color: var(--charcoal-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.post-featured-image {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  max-height: 520px;
}
.post-featured-image img {
  width: 100%;
  object-fit: cover;
}
.post-content {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--charcoal);
}
.post-content h2 {
  font-size: 1.7rem;
  margin: 2.5rem 0 1rem;
  color: var(--charcoal);
}
.post-content h3 {
  font-size: 1.3rem;
  margin: 2rem 0 .8rem;
  color: var(--sage-deeper);
}
.post-content img {
  border-radius: var(--radius-lg);
  margin: 1.8rem 0;
  box-shadow: var(--shadow);
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8rem 0;
  font-size: .9rem;
}
.post-content table th {
  background: var(--sage-bg);
  padding: .7rem 1rem;
  text-align: left;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage-deeper);
  border-bottom: 2px solid var(--sage-pale);
}
.post-content table td {
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--line-light);
  color: var(--charcoal-l);
}
.post-content table tr:hover td { background: var(--sage-bg); }

/* ============================================
   SIDEBAR
============================================ */
#sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 1.5px solid var(--line);
}
.widget-newsletter {
  background: var(--sage-dark);
  color: white;
}
.widget-newsletter .widget-title {
  color: white;
  border-bottom-color: rgba(255,255,255,.2);
}
.widget-newsletter p {
  font-size: .85rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 1rem;
}
.widget-newsletter input[type="email"] {
  width: 100%;
  padding: .65rem 1rem;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  background: rgba(255,255,255,.15);
  color: white;
  font-family: var(--font-ui);
  font-size: .85rem;
  margin-bottom: .6rem;
  outline: none;
}
.widget-newsletter input::placeholder { color: rgba(255,255,255,.55); }
.widget-newsletter input[type="submit"] {
  width: 100%;
  padding: .65rem 1rem;
  background: white;
  color: var(--sage-deeper) !important;
  font-size: .78rem;
}
.widget-newsletter input[type="submit"]:hover {
  background: var(--sage-pale);
  transform: none;
}
.widget-about img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  border: 3px solid var(--sage-pale);
}
.widget-about p { font-size: .88rem; color: var(--charcoal-l); line-height: 1.7; }
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li {
  padding: .55rem 0;
  border-bottom: 1px solid var(--line-light);
  font-size: .9rem;
}
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--charcoal-l); text-decoration: none; }
.widget ul li a:hover { color: var(--sage-dark); }

/* ============================================
   ABOUT PAGE
============================================ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  overflow: hidden;
}
.about-hero-left {
  background: var(--sage-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5rem 5rem 7rem;
}
.about-hero-right {
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 35% 65%, rgba(61,97,88,.3) 0%, transparent 65%);
}
.about-story {
  max-width: var(--content-width);
  margin: 5rem auto;
  padding: 0 2rem;
}
.pull-quote {
  border-left: 3px solid var(--sage);
  padding: 1rem 0 1rem 2rem;
  margin: 2.5rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--sage-deeper);
  line-height: 1.65;
}
.about-pillars {
  background: var(--sage-bg);
  padding: 5rem 2rem;
}

/* ============================================
   PAGINATION
============================================ */
.pagination {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 500;
  border: 1px solid var(--line);
  color: var(--charcoal-l);
  text-decoration: none;
  transition: all .2s;
}
.pagination a:hover { border-color: var(--sage); color: var(--sage-dark); }
.pagination .current { background: var(--sage-dark); color: white; border-color: var(--sage-dark); }

/* ============================================
   FOOTER
============================================ */
#site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.75);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand .site-logo img { filter: brightness(0) invert(1); opacity: .85; }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 260px;
  margin-bottom: 0;
}
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--sage-light); }
.footer-social {
  display: flex;
  gap: .8rem;
  margin-top: 1.2rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--sage); color: white; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--sage-light); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .hero-left { padding: 4rem 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 1.5rem; }
  .hero-right { min-height: 280px; }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-left { padding: 3rem 1.5rem; }
  .about-hero-right { min-height: 220px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-list-item { grid-template-columns: 1fr; }
  .post-list-thumb { aspect-ratio: 16/9; }
  .post-list-body { padding: 1.2rem; }
  #main-content { grid-template-columns: 1fr; gap: 3rem; }
  #site-nav { display: none; }
  #site-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1rem 2rem; border-bottom: 1.5px solid var(--line); box-shadow: 0 4px 20px rgba(0,0,0,.1); }
  #site-nav.open ul { flex-direction: column; gap: 0; }
  #site-nav.open a { display: block; padding: .75rem 0; border-bottom: 1px solid var(--line-light); border-left: none; font-size: .85rem; }
  .menu-toggle { display: flex; }
  .header-inner { position: relative; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container, .container--narrow { padding: 0 1.2rem; }
  .hero-left { padding: 3rem 1.2rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { min-width: auto; width: 100%; }
}
