/* =========================================================
   PIZZA PROCESS GUIDE — MAIN STYLESHEET
   Warm Kitchen Style: beige, red accents, dark brown text
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;600;700&display=swap');

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Lato', sans-serif;
  background-color: #fdf6ec;
  color: #2c1a0e;
  line-height: 1.75;
  min-height: 100vh;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: #1e0f06;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

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

a {
  color: #c0392b;
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover { color: #922b21; }

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
li { margin-bottom: 0.4rem; }

strong { font-weight: 700; color: #1e0f06; }

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background-color: #fdeede;
}

.section--dark {
  background-color: #2c1a0e;
  color: #fdf6ec;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fdf6ec;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #1e0f06;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 70px;
  max-width: 1160px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo__icon {
  font-size: 1.8rem;
  line-height: 1;
}

.site-logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fdf6ec;
  line-height: 1.2;
}

.site-logo__text span {
  display: block;
  font-size: 0.7rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #e8c49a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Desktop Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  color: #e8c49a;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.8rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  background-color: #c0392b;
  color: #fff;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #e8c49a;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Nav */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #1e0f06;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.3rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .site-nav a {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.45);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,15,6,0.75) 0%, rgba(192,57,43,0.3) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 1.5rem;
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  display: inline-block;
  background-color: #c0392b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero__lead {
  font-size: 1.15rem;
  color: #f5dfc0;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.btn--primary {
  background-color: #c0392b;
  color: #fff;
  border-color: #c0392b;
}
.btn--primary:hover {
  background-color: #a93226;
  border-color: #a93226;
  color: #fff;
}

.btn--outline {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline:hover {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
}

.btn--outline-red {
  background-color: transparent;
  color: #c0392b;
  border-color: #c0392b;
}
.btn--outline-red:hover {
  background-color: #c0392b;
  color: #fff;
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  background-color: #2c1a0e;
  padding: 60px 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(192,57,43,0.25) 0%, transparent 70%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero__breadcrumb {
  font-size: 0.8rem;
  color: #e8c49a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.page-hero__breadcrumb a {
  color: #e8c49a;
  text-decoration: none;
}
.page-hero__breadcrumb a:hover { color: #fff; }

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

.page-hero__lead {
  color: #f0d5b0;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================================
   CARDS
   ========================================================= */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .card-grid--4,
  .card-grid--3,
  .card-grid--2 { grid-template-columns: 1fr; }
}

.card {
  background-color: #fff8f0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(44,26,14,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(192,57,43,0.08);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(44,26,14,0.14);
}

.card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e0f06;
  margin-bottom: 0.6rem;
}

.card__text {
  font-size: 0.95rem;
  color: #4a2e1a;
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.steps {
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  counter-increment: step-counter;
}

.step__number {
  width: 70px;
  height: 70px;
  background-color: #c0392b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
  position: relative;
}

.step__number::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, #c0392b, transparent);
}

.step:last-child .step__number::after {
  display: none;
}

.step__body {
  padding-top: 0.6rem;
}

.step__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e0f06;
  margin-bottom: 0.5rem;
}

.step__text {
  color: #4a2e1a;
  font-size: 0.97rem;
  line-height: 1.75;
}

@media (max-width: 480px) {
  .step { grid-template-columns: 60px 1fr; gap: 1rem; }
  .step__number { width: 54px; height: 54px; font-size: 1.2rem; }
}

/* =========================================================
   IMAGE + TEXT SPLIT SECTIONS
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(44,26,14,0.18);
}

.split__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.split__text h2 { margin-bottom: 1rem; }
.split__text h3 { margin-bottom: 0.5rem; color: #c0392b; }
.split__text p { color: #4a2e1a; }

@media (max-width: 768px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
  .split__image img { height: 260px; }
}

/* =========================================================
   HIGHLIGHT BOX
   ========================================================= */
.highlight-box {
  background: linear-gradient(135deg, #c0392b 0%, #922b21 100%);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 32px rgba(192,57,43,0.3);
}

.highlight-box h2, .highlight-box h3 { color: #fff; margin-bottom: 0.8rem; }
.highlight-box p { color: rgba(255,255,255,0.9); margin-bottom: 0; }

/* =========================================================
   SECTION HEADING
   ========================================================= */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #c0392b;
  margin-bottom: 0.6rem;
}

.section-heading h2 { margin-bottom: 0.8rem; }

.section-heading__lead {
  max-width: 600px;
  margin: 0 auto;
  color: #6b3f24;
  font-size: 1.05rem;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background-color: #fff8f0;
  border: 1px solid rgba(192,57,43,0.12);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(44,26,14,0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e0f06;
  transition: background 0.2s;
  gap: 1rem;
}

.faq-question:hover { background-color: #fdeede; }

.faq-question.active { background-color: #fdeede; color: #c0392b; }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #c0392b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-question.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.5rem;
}

.faq-answer.open {
  max-height: 600px;
  padding: 0 1.5rem 1.4rem;
}

.faq-answer p, .faq-answer ul {
  color: #4a2e1a;
  font-size: 0.97rem;
  line-height: 1.75;
}

/* =========================================================
   STAT STRIP
   ========================================================= */
.stat-strip {
  background-color: #c0392b;
  padding: 50px 0;
}

.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

@media (max-width: 768px) {
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .stat-strip .container { grid-template-columns: 1fr; }
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: #8b5e3c;
}

.breadcrumb a { color: #c0392b; }
.breadcrumb a:hover { color: #922b21; }
.breadcrumb span { margin: 0 0.4rem; color: #c0392b; }

/* =========================================================
   INFO BOX
   ========================================================= */
.info-box {
  border-left: 4px solid #c0392b;
  background-color: #fff0e0;
  padding: 1.2rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.info-box p { margin: 0; color: #4a2e1a; font-size: 0.95rem; }
.info-box strong { color: #c0392b; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-item__body h4 {
  margin-bottom: 0.2rem;
  color: #c0392b;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-item__body p { margin: 0; font-size: 0.97rem; color: #4a2e1a; }

.disclaimer-box {
  background-color: #fff8f0;
  border: 1px solid rgba(192,57,43,0.15);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(44,26,14,0.07);
}

.disclaimer-box h3 { margin-bottom: 1rem; color: #c0392b; font-size: 1.1rem; }

/* =========================================================
   INTERNAL NAV CARDS (process page navigation)
   ========================================================= */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

@media (max-width: 768px) {
  .nav-cards { grid-template-columns: 1fr; }
}

.nav-card {
  display: flex;
  flex-direction: column;
  background-color: #fff8f0;
  border: 1px solid rgba(192,57,43,0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 3px 12px rgba(44,26,14,0.07);
}

.nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44,26,14,0.14);
  border-color: #c0392b;
}

.nav-card__icon { font-size: 2rem; margin-bottom: 0.8rem; }
.nav-card__title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: #1e0f06; margin-bottom: 0.4rem; }
.nav-card__desc { font-size: 0.88rem; color: #6b3f24; margin: 0; }
.nav-card__arrow { margin-top: auto; padding-top: 1rem; font-size: 0.85rem; font-weight: 700; color: #c0392b; letter-spacing: 0.04em; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background-color: #140a03;
  color: #c8a07a;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand__logo-icon { font-size: 2rem; }
.footer-brand__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fdf6ec;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #9e7050;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fdf6ec;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  color: #9e7050;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fdf6ec; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.footer-contact-item__icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.footer-contact-item__text { font-size: 0.88rem; color: #9e7050; }
.footer-contact-item__text a { color: #9e7050; }
.footer-contact-item__text a:hover { color: #fdf6ec; }

.footer-bottom {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #6a4428;
  margin: 0;
}

.footer-bottom a { color: #9e7050; }
.footer-bottom a:hover { color: #fdf6ec; }

/* =========================================================
   DISCLAIMER BANNER
   ========================================================= */
.disclaimer-banner {
  background-color: #fdeede;
  border-top: 2px solid #c0392b;
  padding: 14px 1.5rem;
  text-align: center;
}

.disclaimer-banner p {
  font-size: 0.82rem;
  color: #6b3f24;
  margin: 0;
  line-height: 1.5;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .about-values { grid-template-columns: 1fr; }
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: #fff8f0;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(44,26,14,0.07);
  border: 1px solid rgba(192,57,43,0.08);
}

.value-card__icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
.value-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e0f06;
  margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.93rem; color: #4a2e1a; margin: 0; }

/* =========================================================
   PRIVACY POLICY
   ========================================================= */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.7rem;
  color: #c0392b;
}

.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.policy-content p, .policy-content ul, .policy-content ol {
  color: #4a2e1a;
  font-size: 0.97rem;
}

.policy-content ul { padding-left: 1.5rem; }

/* =========================================================
   UTILITIES
   ========================================================= */
.text-center { text-align: center; }
.text-red { color: #c0392b; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* divider */
.divider {
  width: 60px;
  height: 3px;
  background-color: #c0392b;
  border-radius: 2px;
  margin: 1rem auto 1.5rem;
}

.divider--left { margin-left: 0; }

/* tag */
.tag {
  display: inline-block;
  background-color: rgba(192,57,43,0.1);
  color: #c0392b;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

/* =========================================================
   PRINT STYLES
   ========================================================= */
@media print {
  .site-header, .site-footer, .disclaimer-banner, .btn, .hero__cta { display: none !important; }
  body { background: #fff; color: #000; }
  .page-hero { background: none; padding: 20px 0; }
  .page-hero h1 { color: #000; }
}

/* =========================================================
   IMAGE PLACEHOLDER (fallback if images fail)
   ========================================================= */
.img-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #fdeede 0%, #f5c49a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #c0392b;
  border-radius: 16px;
}

.img-placeholder span {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #6b3f24;
  margin-top: 0.5rem;
}