/* =====================================
   Obrada page — additional styles
   ===================================== */

/* Page hero (smaller than main hero) */
.page-hero {
  position: relative;
  height: 56vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.3) 60%,
    rgba(0,0,0,0.2) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-content h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-content h1 em {
  font-style: italic;
  font-weight: 300;
}

.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  line-height: 1.65;
}

/* Process intro */
.process-intro {
  padding: 90px 0 60px;
}

.process-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.process-intro-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 20px;
}

/* Process sections */
.process-section {
  padding: 90px 0;
}

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

.process-section-header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 56px;
}

.process-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--border);
  flex-shrink: 0;
  margin-top: -8px;
}

/* Process gallery */
.process-gallery {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 12px;
  margin-bottom: 52px;
}

.process-gallery--reverse {
  grid-template-columns: 2fr 3fr;
}

.process-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 3px;
}

.process-img-secondary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-img-secondary img {
  width: 100%;
  height: calc(50% - 6px);
  min-height: 190px;
  object-fit: cover;
  border-radius: 3px;
  flex: 1;
}

/* Process facts */
.process-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-fact {
  padding: 28px 24px;
  background: var(--white);
  border-radius: 3px;
  border: 1px solid var(--border);
}

.bg-white .process-fact {
  background: var(--cream-light);
}

.process-fact-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.process-fact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.process-fact p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.68;
}

/* CTA section */
.obrada-cta {
  padding: 90px 0;
  background: var(--dark);
}

.obrada-cta-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.obrada-cta-inner h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.obrada-cta-inner p {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.75;
}

.obrada-cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
}

.btn-outline-dark:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
  .process-intro-grid { grid-template-columns: 1fr; gap: 32px; }

  .process-section-header {
    flex-direction: column;
    gap: 16px;
  }

  .process-step-num { font-size: 3.5rem; }

  .process-gallery,
  .process-gallery--reverse {
    grid-template-columns: 1fr;
  }

  .process-img-main img { height: 260px; }

  .process-img-secondary {
    flex-direction: row;
  }

  .process-img-secondary img {
    min-height: 140px;
    height: 140px;
  }

  .process-facts { grid-template-columns: 1fr; }

  .page-hero { height: 45vh; }
}
