/*
Theme Name: Great Satiable Recipes
Theme URI: https://greatsatiablerecipes.com
Author: Great Satiable Recipes
Author URI: https://greatsatiablerecipes.com
Description: A warm, rustic food blog and store. Satiating recipes, safe kitchenware, apparel, free cookbooks, and leftist essays. Barn red and white.
Version: 2.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: great-satiable-recipes
Tags: food-and-drink, blog, custom-menu, featured-images, one-column, two-columns

Great Satiable Recipes WordPress Theme
Food that fills you up. Ideas that won't let you rest.
*/

/* ========================================
   CSS RESET & BASE
   ======================================== */

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

:root {
  --barn-red: #7C2128;
  --barn-red-light: #9B3A42;
  --barn-red-dark: #5A171C;
  --cream: #FDF8F4;
  --warm-white: #FDFBF9;
  --charcoal: #2D2A26;
  --warm-gray: #6B6560;
  --light-gray: #E8E3DE;
  --border-color: #E0DAD4;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-display: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-editorial: 'Space Grotesk', sans-serif;
  --ink-black: #0D0D0D;
  --off-white: #F5F5F3;
}

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

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--charcoal);
  line-height: 1.3;
}

h1 { font-size: 2.5rem; font-weight: 500; }
h2 { font-size: 2rem; font-weight: 500; }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }

p {
  margin-bottom: 1rem;
  color: var(--warm-gray);
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border-color);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--barn-red);
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 1;
}

@media (min-width: 768px) {
  .site-logo {
    font-size: 1.65rem;
  }
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--warm-gray);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav .current-menu-item a,
.main-nav .current_page_item a {
  color: var(--barn-red);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 1.5rem;
  }
}

/* ========================================
   HERO SECTION — SPLIT LAYOUT
   ======================================== */

.hero-split {
  padding: 3.5rem 0 4rem;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .hero-split {
    padding: 5rem 0 5.5rem;
  }
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-split-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
  }
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-editorial);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--barn-red);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--barn-red);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin: 0 0 1.5rem 0;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.hero-headline-accent {
  font-style: italic;
  color: var(--barn-red);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--warm-gray);
  margin: 0 0 2rem 0;
  max-width: 540px;
}

.hero-split .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-split-visual {
  position: relative;
  align-self: stretch;
}

.hero-visual-frame {
  position: relative;
  overflow: hidden;
  background: var(--ink-black);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border-color);
  box-shadow: 12px 12px 0 var(--barn-red);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-visual-frame:hover {
  transform: translate(-2px, -2px);
  box-shadow: 14px 14px 0 var(--barn-red);
}

.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
}

@media (max-width: 899px) {
  .hero-visual-frame {
    aspect-ratio: 16 / 10;
    box-shadow: 8px 8px 0 var(--barn-red);
  }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  border-radius: 0.35rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--barn-red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--barn-red-dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-outline-dark:hover {
  background: var(--charcoal);
  color: #fff;
}

.btn-outline-red {
  background: transparent;
  color: var(--barn-red);
  border: 1px solid var(--barn-red);
}

.btn-outline-red:hover {
  background: var(--barn-red);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--barn-red);
}

.btn-white:hover {
  background: var(--cream);
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: 4rem 0;
}

.section-lg {
  padding: 5rem 0;
}

.section-cream {
  background: var(--cream);
}

.section-red {
  background: var(--barn-red);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header .divider {
  width: 4rem;
  height: 2px;
  background: var(--barn-red);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--barn-red);
  margin-bottom: 0.75rem;
}

/* ========================================
   FEATURES / PILLARS
   ======================================== */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(124, 33, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: var(--barn-red);
  fill: none;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========================================
   FEATURED RECIPE
   ======================================== */

.featured-recipe {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 768px) {
  .featured-recipe {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.recipe-image-wrapper {
  position: relative;
}

.recipe-image-wrapper img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.recipe-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(124, 33, 40, 0.15);
  border-radius: 0.5rem;
  z-index: -1;
}

.recipe-content {
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
}

.recipe-content .recipe-intro {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.recipe-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.ingredient-list {
  margin-bottom: 2rem;
}

.ingredient-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.ingredient-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--barn-red);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.instruction-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.instruction-list .step-num {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--barn-red);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.recipe-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--cream);
  border-radius: 0.35rem;
  border: 1px solid var(--border-color);
}

.recipe-note p {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--warm-gray);
  margin: 0;
}

/* ========================================
   BAKED IN — EDITORIAL SECTION
   ======================================== */

.baked-in-teaser {
  background: var(--ink-black);
  padding: 4rem 0;
}

.baked-in-content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.baked-in-label {
  display: inline-block;
  font-family: var(--font-editorial);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
}

.baked-in-content h2 {
  font-family: var(--font-editorial);
  font-size: 1.75rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .baked-in-content h2 {
    font-size: 2.1rem;
  }
}

.baked-in-content p {
  font-family: var(--font-editorial);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.baked-in-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.baked-in-topics span {
  font-family: var(--font-editorial);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: 0.02em;
}

.baked-in-coming-soon {
  font-family: var(--font-editorial);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4) !important;
  font-style: italic;
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
  text-align: center;
  padding: 4rem 1rem;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 450px;
  margin: 0 auto 1.5rem;
}

/* ========================================
   TIP SECTION
   ======================================== */

.tip-section {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.tip-section h3 {
  margin-bottom: 0.75rem;
}

.tip-section p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ========================================
   PAGE HERO (Products, Cookbook)
   ======================================== */

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .page-hero-image {
    height: 400px;
  }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 15, 0.7), rgba(20, 18, 15, 0.3), rgba(20, 18, 15, 0.2));
}

.page-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero-content h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto;
}

/* Mission Banner */
.mission-banner {
  padding: 1rem 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.mission-banner p {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-gray);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mission-banner svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--barn-red);
  fill: none;
  stroke-width: 2;
}

/* ========================================
   MERCH GRID
   ======================================== */

.merch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.merch-card {
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.merch-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.merch-image-placeholder {
  aspect-ratio: 1;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.merch-image-placeholder .placeholder-content {
  text-align: center;
}

.merch-image-placeholder .placeholder-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.merch-image-placeholder .placeholder-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--warm-gray);
  fill: none;
  stroke-width: 1.5;
}

.merch-image-placeholder .placeholder-text {
  font-size: 0.75rem;
  color: var(--warm-gray);
}

.merch-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0f0f0;
}

.merch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merch-info {
  padding: 1.5rem;
}

.merch-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.merch-info p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.merch-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--barn-red);
}

/* ========================================
   ORDER FORMS
   ======================================== */

.order-form-wrapper {
  max-width: 650px;
  margin: 0 auto;
}

.order-form-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-top: 1rem;
}

.gsr-order-form {
  margin-top: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row:has(.form-group:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--barn-red);
  box-shadow: 0 0 0 3px rgba(124, 33, 40, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-top: 1rem;
  font-style: italic;
}

.order-success {
  text-align: center;
  padding: 3rem 0;
}

.order-success h3 {
  color: var(--barn-red);
  margin-bottom: 0.75rem;
}

.order-success p {
  font-size: 0.95rem;
}

.form-success-msg {
  color: var(--barn-red);
  font-weight: 500;
}

/* ========================================
   COOKBOOK / DOWNLOAD SECTION
   ======================================== */

.download-inner {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}

.download-inner h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.download-inner h3 svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: var(--barn-red);
  fill: none;
  stroke-width: 2;
}

.download-inner p {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.download-form {
  display: flex;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}

.download-form input[type="email"] {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.download-form input[type="email"]:focus {
  border-color: var(--barn-red);
  box-shadow: 0 0 0 3px rgba(124, 33, 40, 0.1);
}

.download-form .btn {
  white-space: nowrap;
}

/* Coming Soon Section */
.coming-soon-section {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.coming-soon-section h2 {
  margin-bottom: 0.75rem;
}

.coming-soon-section p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========================================
   SINGLE POST
   ======================================== */

.single-post-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.single-post-content .entry-header {
  margin-bottom: 2rem;
}

.single-post-content .entry-title {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.single-post-content .entry-meta {
  font-size: 0.85rem;
  color: var(--warm-gray);
}

.single-post-content .entry-content {
  font-size: 1rem;
  line-height: 1.8;
}

.single-post-content .entry-content p {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.single-post-content .entry-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.single-post-content .entry-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.single-post-content .entry-content ul,
.single-post-content .entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.single-post-content .entry-content ul {
  list-style: disc;
}

.single-post-content .entry-content ol {
  list-style: decimal;
}

.single-post-content .entry-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.single-post-content .entry-content img {
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

/* Baked In single post styling */
.single-baked-in .entry-header {
  border-bottom: 2px solid var(--ink-black);
  padding-bottom: 1.5rem;
}

.single-baked-in .section-label {
  font-family: var(--font-editorial);
  color: var(--ink-black);
  font-weight: 600;
  letter-spacing: 0.15em;
}

.single-baked-in .entry-title {
  font-family: var(--font-editorial);
  font-weight: 500;
}

.single-baked-in .entry-content {
  font-family: var(--font-editorial);
  font-size: 1.05rem;
  line-height: 1.85;
}

.single-baked-in .entry-content p {
  font-family: var(--font-editorial);
}

.single-baked-in .entry-content blockquote {
  border-left: 3px solid var(--ink-black);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: normal;
  font-weight: 500;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand .site-logo {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-links h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.75rem;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer-links .mission-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ========================================
   PAGINATION
   ======================================== */

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  padding: 0.5rem 1rem;
  border-radius: 0.35rem;
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}

.pagination a:hover {
  border-color: var(--barn-red);
  color: var(--barn-red);
}

.pagination .current {
  background: var(--barn-red);
  color: #fff;
  border-color: var(--barn-red);
}

/* ========================================
   WORDPRESS SPECIFIC
   ======================================== */

.wp-block-image img {
  border-radius: 0.5rem;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ========================================
   CATEGORY TABS (for future blog use)
   ======================================== */

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.category-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--cream);
  color: var(--warm-gray);
  font-family: var(--font-sans);
}

.category-tab:hover {
  background: var(--light-gray);
}

.category-tab.active {
  background: var(--barn-red);
  color: #fff;
}

.category-tab[href*="baked-in"] {
  font-family: var(--font-editorial);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.category-tab[href*="baked-in"].active {
  background: var(--ink-black);
  color: #fff;
}

/* ========================================
   RECIPE CARDS (for future blog use)
   ======================================== */

.recipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .recipe-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .recipe-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.recipe-card {
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.recipe-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.recipe-card-image {
  aspect-ratio: 16/10;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.recipe-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-category-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(124, 33, 40, 0.9);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  text-transform: capitalize;
}

.recipe-card-body {
  padding: 1.25rem;
}

.recipe-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.recipe-card-body h3 a {
  transition: color 0.2s;
}

.recipe-card-body h3 a:hover {
  color: var(--barn-red);
}

.recipe-card-body p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.recipe-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--warm-gray);
}

.recipe-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.recipe-meta svg {
  width: 0.85rem;
  height: 0.85rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ========================================
   TIP MODAL
   ======================================== */

.gsr-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.gsr-modal[aria-hidden="false"] {
  display: flex;
}

.gsr-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.55);
  backdrop-filter: blur(2px);
}

.gsr-modal-dialog {
  position: relative;
  background: #fff;
  border-radius: 0.75rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.gsr-modal-dialog h3 {
  margin-bottom: 0.5rem;
  color: var(--barn-red);
}

.gsr-modal-sub {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.gsr-modal-hint {
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin: -0.25rem 0 1rem;
}

.gsr-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  background: none;
  border: 0;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--warm-gray);
  cursor: pointer;
}

.gsr-modal-close:hover {
  color: var(--barn-red);
}

.gsr-tip-form .form-group {
  margin-bottom: 0.85rem;
}

.gsr-tip-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.form-error-msg {
  background: rgba(124, 33, 40, 0.08);
  color: var(--barn-red);
  padding: 0.6rem 0.85rem;
  border-radius: 0.35rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

body.gsr-modal-open {
  overflow: hidden;
}

/* ========================================
   STORE — CATEGORY FILTER
   ======================================== */

.store-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  color: var(--warm-gray);
  font-family: var(--font-sans);
}

.filter-btn:hover {
  border-color: var(--barn-red);
  color: var(--barn-red);
}

.filter-btn.active {
  background: var(--barn-red);
  color: #fff;
  border-color: var(--barn-red);
}

/* ========================================
   STORE — PRODUCT GRID
   ======================================== */

.store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 520px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .store-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .store-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.store-card {
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.store-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.store-card.hidden {
  display: none;
}

.store-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.store-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
}

.store-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.store-card:hover .store-card-image img {
  transform: scale(1.03);
}

.store-card-info {
  padding: 1.25rem;
}

.store-card-material {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--barn-red);
  margin-bottom: 0.4rem;
}

.store-card-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.store-card-info p {
  font-size: 0.8rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
  color: var(--warm-gray);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-card-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--barn-red);
}

/* ========================================
   STORE — PRODUCT ORDER MODAL (wide)
   ======================================== */

.gsr-modal-wide {
  max-width: 800px;
}

.product-modal-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .product-modal-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.product-modal-image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.5rem;
  background: var(--cream);
}

.product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-details h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.product-modal-details > p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--warm-gray);
  margin-bottom: 1rem;
}

.modal-product-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-product-material {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  background: var(--cream);
  padding: 0.3rem 0.6rem;
  border-radius: 0.25rem;
}

.modal-product-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--barn-red);
}

.product-modal-details .gsr-order-form .form-group {
  margin-bottom: 0.75rem;
}

.product-modal-details .gsr-order-form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

/* ========================================
   STORE — CUSTOM APRON CARD ACCENT
   ======================================== */

.store-card-custom {
  border: 2px dashed var(--barn-red);
}

.store-card-custom .store-card-price {
  font-style: italic;
}
