/* ===== Custom Properties ===== */
:root {
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --color-accent: #c2410c;
  --color-accent-hover: #9a3412;
  --color-accent-rgb: 194, 65, 12;
  --color-success: #16a34a;
  --color-error: #dc2626;

  /* Border radius scale */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 24px;

  /* Shadow scale */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.14);
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-accent: #e8713a;
    --color-accent-hover: #c2410c;
    --color-accent-rgb: 232, 113, 58;
    --color-success: #4ade80;
    --color-error: #f87171;
  }
}

/* ===== Typography ===== */
body {
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* ===== Button Accent Utility ===== */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-accent:hover {
  background: var(--color-accent-hover);
  color: #fff;
  text-decoration: none;
}

.btn-accent:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.btn-accent:active {
  transform: scale(0.97);
}

/* ===== Header / Nav ===== */
.site-header {
  border-bottom: 1px solid var(--pico-muted-border-color, #e5e2dc);
  background: var(--pico-card-background-color, #fff);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.site-header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.site-header nav a {
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--color-accent);
}

.site-header nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  width: 100%;
}

.site-title {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-title:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.site-title::after {
  display: none;
}

/* ===== Hero Image ===== */
.hero-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

/* ===== Recipe Grid (List Pages) ===== */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

/* Featured first card — spans full width with side-by-side layout */
.recipe-grid .recipe-card-preview:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.recipe-grid .recipe-card-preview:first-child .card-image {
  height: 100%;
  min-height: 280px;
  aspect-ratio: auto;
}

@media (max-width: 600px) {
  .recipe-grid .recipe-card-preview:first-child {
    grid-template-columns: 1fr;
  }
  .recipe-grid .recipe-card-preview:first-child .card-image {
    height: auto;
    min-height: auto;
    aspect-ratio: 3 / 2;
  }
}

.recipe-card-preview {
  background: var(--pico-card-background-color, #fff);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recipe-card-preview:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 60%;
  transition: transform 0.35s ease;
}

.recipe-card-preview:hover .card-image {
  transform: scale(1.04);
}

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

.card-body h2 {
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
}

.card-body h2 a {
  text-decoration: none;
  color: inherit;
}

.card-body h2 a:hover {
  color: var(--color-accent);
}

.card-body time {
  font-size: 0.85rem;
  color: var(--pico-muted-color, #666);
}

.card-body p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: var(--pico-muted-color, #666);
}

/* Hide branded print card on screen (its CSS only loads in print context) */
.rc { display: none; }

/* ===== Recipe Card — Web View (simple markdown style) ===== */
.recipe-card {
  background: var(--pico-card-background-color, #f9f7f4);
  border: 1px solid var(--pico-muted-border-color, #e5e2dc);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.recipe-card h2 {
  margin-top: 0;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.5rem;
}

.recipe-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
  padding: 0.75rem 0;
  background: var(--pico-background-color, #fff);
  border-radius: 8px;
}

.recipe-meta span {
  font-size: 0.9rem;
}

.ingredients-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 1rem;
}

.ingredients-list li label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
  cursor: pointer;
}

.ingredients-list li input[type="checkbox"] {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  accent-color: var(--color-accent);
}

.ingredients-list li:has(input:checked) {
  text-decoration: line-through;
  opacity: 0.5;
}

/* Recipe card section headings */
.recipe-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
}

/* Jump to Recipe link */
.jump-to-recipe {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-body);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: background 0.2s ease;
}

.jump-to-recipe:hover {
  background: var(--color-accent-hover);
  color: #fff;
  text-decoration: none;
}

.recipe-card {
  scroll-margin-top: 5rem;
}

.instructions-list {
  counter-reset: recipe-step;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 1rem;
}

.instructions-list li {
  counter-increment: recipe-step;
  position: relative;
  padding: 1rem 1rem 1rem 3.5rem;
  border-bottom: 1px solid var(--pico-muted-border-color, #e5e2dc);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.instructions-list li:last-child {
  border-bottom: none;
}

.instructions-list li::before {
  content: counter(recipe-step);
  position: absolute;
  left: 0;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.instructions-list li.active-step {
  background: rgba(194, 65, 12, 0.06);
  border-left: 4px solid var(--color-accent);
}

.print-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 0.75rem 1.25rem;
  min-height: 44px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}

.print-btn:hover {
  background: var(--color-accent-hover);
}

.print-btn svg {
  width: 16px;
  height: 16px;
}

/* ===== FAQ Section ===== */
.faq-section {
  margin: 2rem 0;
}

.faq-item {
  border: 1px solid var(--pico-muted-border-color, #e5e2dc);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-heading);
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--pico-muted-border-color, #e5e2dc);
}

.faq-item p {
  padding: 1rem 1.25rem;
  margin: 0;
}

/* ===== Affiliate Disclosure ===== */
.affiliate-disclosure {
  font-size: 0.8rem;
  color: var(--pico-muted-color, #888);
  margin: 0.5rem 0 1rem;
}

/* ===== Excerpt ===== */
.excerpt {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--pico-muted-color, #555);
  border-left: 3px solid var(--color-accent);
  padding-left: 1rem;
  margin: 1rem 0 1.5rem;
}

/* ===== Post Body ===== */
.post-body,
.recipe-card,
.faq-section,
.attachments-section {
  max-width: 70ch;
}

.post-body {
  font-size: 1.05rem;
  line-height: 1.8;
}

h1, h2, h3, h4 {
  overflow-wrap: break-word;
  word-break: break-word;
}

.post-body h2 {
  margin-top: 2rem;
  color: var(--color-accent);
}

.post-body img {
  border-radius: 8px;
  max-width: 100%;
}

/* Inline image size classes — added via {.class} in markdown */
.post-body img.img-full {
  width: 100%;
  display: block;
  margin: 1.5rem 0;
}

.post-body img.img-half {
  width: 50%;
  float: left;
  margin: 0.5rem 1.5rem 1rem 0;
  shape-margin: 1rem;
}

.post-body img.img-thumb {
  width: 200px;
  float: right;
  margin: 0.5rem 0 1rem 1.5rem;
  shape-margin: 1rem;
}

/* Clear floats after sections with floated images */
.post-body h2,
.post-body h3,
.post-body hr {
  clear: both;
}

@media (max-width: 600px) {
  .post-body img.img-half,
  .post-body img.img-thumb {
    float: none;
    width: 100%;
    margin: 1rem 0;
  }
}

.post-body ul,
.post-body ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.post-body li {
  margin-bottom: 0.35rem;
}

.post-body blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--pico-muted-color, #555);
  font-style: italic;
}

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
}

.skip-link:focus {
  top: 0;
}

/* ===== Visually Hidden ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.85rem;
  color: var(--pico-muted-color, #999);
  border-top: 2px solid var(--color-accent);
  margin-top: 3rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-nav a {
  color: var(--pico-muted-color, #666);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--color-accent);
}

/* ===== YouTube Video Embeds ===== */
.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 1.5rem 0;
  border-radius: 8px;
  background: var(--pico-color, #000);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .recipe-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ===== Print Recipe Button ===== */
/* ===== Print Styles ===== */
@media print {
  .site-header, .site-nav, footer, .affiliate-disclosure,
  .faq-section, .video-embed, .subscribe-section, script { display: none; }
  .hero-image { max-height: 300px; }
  body { font-size: 12pt; }
  .ingredients-list li input[type="checkbox"] { display: none; }
  .ingredients-list { list-style-type: disc; padding-left: 1.5rem; }
}

/* ===== Subscribe Section ===== */
.subscribe-section {
  text-align: center;
  padding: 2.5rem 2rem;
  margin: 3rem 0;
  background: var(--pico-card-background-color, #f9f7f4);
  border-radius: 12px;
  border: 1px solid var(--pico-muted-border-color, #e5e2dc);
}
.subscribe-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.subscribe-section > p {
  color: var(--pico-muted-color, #666);
  margin-bottom: 1.25rem;
}
.subscribe-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}
.subscribe-form input[type="email"] {
  flex: 1;
  min-width: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 0.85rem 1rem;
  border: 2px solid var(--pico-muted-border-color, #ddd);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--pico-background-color, #fff);
  color: var(--pico-color, #333);
  box-sizing: border-box;
}
.subscribe-form input[type="email"]:focus-visible {
  border-color: var(--color-accent);
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.subscribe-form input[type="email"]::placeholder {
  color: var(--pico-muted-color, #aaa);
}
.subscribe-form button[type="submit"] {
  margin-bottom: 0;
  width: auto;
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
  padding: 0.85rem 1.5rem;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  white-space: nowrap;
  box-sizing: border-box;
}
.subscribe-form button[type="submit"]:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}
.subscribe-form button[type="submit"]:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.subscribe-msg { margin-top: 0.75rem; font-size: 0.9rem; }
.subscribe-msg.success { color: var(--color-success); }
.subscribe-msg.error { color: var(--color-error); }
@media (max-width: 480px) {
  .subscribe-form { flex-direction: column; gap: 8px; }
  .subscribe-form input[type="email"] { border-right: 2px solid var(--pico-muted-border-color, #ddd); border-radius: 8px; }
  .subscribe-form button[type="submit"] { border-radius: 8px; text-align: center; width: 100%; }
}

/* ===== Attachments / Downloads ===== */
.attachments-section {
  margin: 2rem 0;
  padding: 1.5rem;
  border: 2px solid var(--color-accent, #b5651d);
  border-radius: 12px;
  background: var(--pico-card-background-color, #fff);
}
.attachments-section h2 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
}
.attachments-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.attachments-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--pico-muted-border-color, #eee);
}
.attachments-list li:last-child {
  border-bottom: none;
}
.attachments-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  text-decoration: none;
}
.attachments-list a:hover {
  text-decoration: underline;
}
.attachment-icon {
  flex-shrink: 0;
}
.attachment-size {
  color: var(--pico-muted-color, #888);
  font-size: 0.85rem;
  margin-left: 0.25rem;
}
@media print {
  .attachments-section { display: none; }
}

/* ===== Homepage ===== */
.home-hero {
  padding: 3rem 1.5rem;
  margin-bottom: 3rem;
  background:
    linear-gradient(160deg, rgba(194,65,12,0.08) 0%, rgba(194,65,12,0.03) 30%, transparent 60%),
    linear-gradient(to bottom, var(--pico-card-background-color, #f9f7f4) 0%, transparent 100%);
  border-radius: 16px;
  border-bottom: 2px solid rgba(194,65,12,0.12);
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-portrait {
  flex: 0 0 auto;
  max-width: 380px;
}

.hero-portrait img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.home-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--pico-muted-color, #666);
  margin-bottom: 2rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-portrait {
    max-width: 75vw;
  }
}

a.hero-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: var(--color-accent);
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-body);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a.hero-cta:hover {
  background: var(--color-accent-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(194, 65, 12, 0.25);
}

a.hero-cta:active {
  transform: translateY(0);
  box-shadow: none;
}

a.hero-cta:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.home-section {
  margin-bottom: 2.5rem;
}

.home-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.home-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* Scroll-driven heading underline animation (progressive enhancement) */
@supports (animation-timeline: view()) {
  .home-section h2::after {
    width: 0;
    animation: grow-bar 1s ease forwards;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }

  @keyframes grow-bar {
    to { width: 60px; }
  }
}

.home-more {
  text-align: center;
  margin-top: 1.5rem;
}

.home-more a {
  display: inline-block;
  padding: 0.5rem 1.75rem;
  border: 2px solid var(--color-accent);
  border-radius: 8px;
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.home-more a:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Card meta tags on homepage */
.card-meta {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin: 0.3rem 0 0.5rem;
}

.card-tag {
  font-size: 0.75rem;
  background: rgba(194,65,12,0.1);
  color: var(--color-accent);
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  font-weight: 500;
}

.card-body h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.card-body h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.card-body h3 a:hover {
  color: var(--color-accent);
}

.card-body h2 a {
  transition: color 0.2s ease;
}

/* Category pills */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.category-pill {
  background: rgba(194,65,12,0.06);
  border: 1.5px solid rgba(194,65,12,0.15);
  border-radius: 24px;
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

/* About blurb */
.home-about {
  background: var(--pico-card-background-color, #f9f7f4);
  border: 1px solid var(--pico-muted-border-color, #e5e2dc);
  border-radius: 12px;
  padding: 2rem;
}

.home-about p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--pico-muted-color, #555);
  margin: 0;
}

/* ===== Dark Mode Fine-tuning ===== */
@media (prefers-color-scheme: dark) {
  .home-hero {
    background:
      linear-gradient(160deg, rgba(232,113,58,0.12) 0%, transparent 40%),
      linear-gradient(to bottom, var(--pico-card-background-color) 0%, transparent 100%);
  }
  .card-tag {
    background: rgba(232,113,58,0.2);
  }
  .category-pill {
    background: rgba(232,113,58,0.12);
    border-color: rgba(232,113,58,0.25);
  }
  .recipe-card {
    background: var(--pico-card-background-color);
    border-color: var(--pico-muted-border-color);
  }
  .recipe-meta {
    background: var(--pico-card-background-color);
  }
}

/* ===== Tablet: Intermediate adjustments ===== */
@media (max-width: 768px) and (min-width: 481px) {
  .recipe-card {
    padding: 1.25rem 1.5rem;
  }
  .home-hero {
    padding: 2rem 1rem;
  }
  .subscribe-section {
    padding: 2rem 1.5rem;
  }
}

/* ===== Mobile: Tighten spacing ===== */
@media (max-width: 480px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hero-image {
    border-radius: 0;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    width: calc(100% + 1.5rem);
    max-width: none;
  }
  .recipe-card {
    padding: 1rem;
    border-radius: 8px;
  }
  .recipe-meta {
    padding: 0.5rem 0;
    gap: 0.5rem;
  }
  .faq-item summary {
    padding: 0.875rem 0.75rem;
    min-height: 44px;
  }
  .faq-item p {
    padding: 0.75rem;
  }
  .attachments-section {
    padding: 1rem;
  }
  .subscribe-section {
    padding: 1.5rem 1rem;
  }
  .post-body img {
    border-radius: 4px;
  }
  .ingredients-list li label {
    padding-left: 0.25rem;
  }
  .instructions-list li {
    padding-left: 3rem;
  }
  h1 {
    font-size: 1.6rem;
  }
}

/* ===== FAQ Hover ===== */
.faq-item summary {
  transition: background 0.2s ease;
}

.faq-item summary:hover {
  background: rgba(194, 65, 12, 0.04);
}

/* ===== Subscribe Button Active ===== */
.subscribe-form button[type="submit"]:active {
  transform: scale(0.97);
}

/* ===== Hero Portrait Hover ===== */
.hero-portrait img {
  transition: box-shadow 0.4s ease;
}

.hero-portrait img:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
