/* ============================================================
   inner.css — Premium Inner Pages Stylesheet
   Div Mangal Murtis
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&display=swap');

/* ── Page Hero Banner ─────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 15, 8, 0.45) 0%,
    rgba(26, 15, 8, 0.72) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 10;
  padding-bottom: 0;
  margin-top: 15vh;
  width: 100%;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.page-hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--amber-400); }
.breadcrumb a:hover { color: var(--amber-300); }
.breadcrumb i { width: 0.875rem; height: 0.875rem; }

/* ── Section Backgrounds ──────────────────────────────────── */
.bg-white   { background-color: var(--white); }
.bg-blush   { background-color: #fdf5f0; }
.bg-light   { background-color: var(--stone-100); }
.bg-dark    { background-color: var(--stone-900); }

/* ── Inner Page Sections ──────────────────────────────────── */
.ip-section {
  padding: 6rem 0;
}

.ip-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--stone-900);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.ip-body {
  color: var(--stone-600);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ── Story Grid ───────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .story-grid { grid-template-columns: 5fr 6fr; }
}

.story-image-col {
  position: relative;
}

.story-image-col .image-wrapper {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 3px solid rgba(255, 182, 193, 0.25);
  box-shadow:
    0 30px 60px -15px rgba(0,0,0,0.25),
    0 0 0 8px rgba(255, 182, 193, 0.08);
}

.story-image-col .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.story-image-col .image-wrapper:hover img {
  transform: scale(1.04);
}

.story-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--white);
  border: 1px solid var(--stone-100);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 5;
}
@media (max-width: 500px) {
  .story-badge { right: 0; bottom: -1rem; }
}

.story-badge i {
  width: 2rem; height: 2rem;
  color: var(--amber-500);
  flex-shrink: 0;
}
.story-badge strong {
  display: block;
  font-weight: 700;
  color: var(--stone-900);
  font-size: 1rem;
}
.story-badge span {
  font-size: 0.75rem;
  color: var(--stone-500);
}

/* Stats row inside story */
.about-stats {
  display: flex;
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--stone-100);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.about-stat {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-right: 1px solid var(--stone-100);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-stat:last-child { border-right: none; }
@media (max-width: 576px) {
  .about-stats {
    flex-direction: column;
  }
  .about-stat {
    border-right: none;
    border-bottom: 1px solid var(--stone-100);
  }
  .about-stat:last-child { border-bottom: none; }
}
.about-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-500);
  line-height: 1;
}
.about-stat span {
  display: block;
  font-size: 0.85rem;
  color: var(--stone-500);
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}

/* ── Values Grid ──────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}
@media (min-width: 640px)  { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: var(--white);
  border: 1px solid var(--stone-100);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  transition: all 0.35s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--amber-400), var(--amber-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.value-card:hover { 
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: transparent;
}
.value-card:hover::before { transform: scaleX(1); }

.value-icon {
  width: 3.25rem;
  height: 3.25rem;
  background: linear-gradient(135deg, var(--amber-50), var(--amber-100));
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--amber-600);
  transition: all 0.35s ease;
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: var(--white);
}

.value-icon i { width: 1.5rem; height: 1.5rem; }

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}
.value-card:hover h3 { color: var(--amber-600); }

.value-card p {
  color: var(--stone-500);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ── Process Grid ─────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

/* connecting line */
.process-grid::before {
  content: '';
  display: none;
}
@media (min-width: 768px) {
  .process-grid::before {
    display: block;
    position: absolute;
    top: 2rem;
    left: calc(12.5% + 1px);
    width: calc(75% - 2px);
    height: 2px;
    background: linear-gradient(to right, var(--amber-400), var(--amber-600));
    z-index: 0;
  }
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.4);
  transition: transform 0.3s ease;
}
.process-step:hover .process-num { transform: scale(1.12); }

.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 0.75rem;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--stone-500);
  line-height: 1.7;
}

/* ── Image Mosaic / Gallery Strip ─────────────────────────── */
.img-mosaic {
  display: grid;
  gap: 1rem;
  margin: 3rem 0;
}
.img-mosaic-2 { grid-template-columns: 1fr; }
.img-mosaic-3 { grid-template-columns: 1fr; }

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

.img-mosaic img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
  transition: transform 0.5s ease;
}
.img-mosaic img:hover { transform: scale(1.03); }

/* ── Team / Artisan Cards ─────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 640px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  background: var(--white);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--stone-100);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  text-align: center;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.team-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.team-card-body {
  padding: 1.5rem;
}
.team-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--stone-900);
  margin-bottom: 0.25rem;
}
.team-card .role {
  font-size: 0.8rem;
  color: var(--amber-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.team-card p {
  font-size: 0.875rem;
  color: var(--stone-500);
  line-height: 1.7;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.ip-cta-section {
  position: relative;
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.ip-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,15,8,0.8) 0%,
    rgba(26,15,8,0.65) 100%
  );
}
.ip-cta-content {
  position: relative;
  z-index: 10;
}
.ip-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 1rem 0 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.ip-cta-content p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.ip-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Quote / Highlight Block ──────────────────────────────── */
.highlight-quote {
  border-left: 4px solid var(--amber-400);
  padding: 1.5rem 2rem;
  background: linear-gradient(to right, rgba(255, 182, 193, 0.06), transparent);
  border-radius: 0 0.75rem 0.75rem 0;
  margin: 2rem 0;
}
.highlight-quote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--stone-700);
  line-height: 1.6;
  margin: 0;
}
.highlight-quote cite {
  display: block;
  font-size: 0.85rem;
  color: var(--amber-600);
  font-weight: 600;
  margin-top: 0.75rem;
  font-style: normal;
  letter-spacing: 0.04em;
}

/* ── Floating Scroll-Fade Animations ─────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.7s ease both;
}
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

/* ── Process Number alias (alternate class name) ────────────── */
.process-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.4);
  transition: transform 0.3s ease;
}
.process-step:hover .process-number { transform: scale(1.12); }

/* ── Gallery Section ─────────────────────────────────────────── */
.gallery-section {
  padding: 5rem 0;
  background: #fff;
}

/* ── Gallery Card ─────────────────────────────────────────────── */
.gallery-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.gallery-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.16);
}
.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.06); }

/* hidden label that slides up on hover */
.gallery-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,15,8,0.75), transparent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 1.5rem 1rem 0.85rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.gallery-card:hover .gallery-card-label { transform: translateY(0); }

/* ── Filter Tabs ──────────────────────────────────────────────── */
.filter-tabs { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  border: 1.5px solid var(--amber-400, #d97706);
  background: transparent;
  color: var(--amber-700, #b45309);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--amber-600, #b45309);
  color: #fff;
  border-color: var(--amber-600, #b45309);
  box-shadow: 0 4px 14px rgba(180,83,9,0.3);
}

/* hidden gallery cards during filtering */
.gallery-card.hidden {
  display: none;
}


/* ── Process Number alias ──────────────────────────────────── */
.process-number {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: var(--white); font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(255, 182, 193, 0.4);
  transition: transform 0.3s ease;
}
.process-step:hover .process-number { transform: scale(1.12); }

/* ── Gallery Section spacing ───────────────────────────────── */
.gallery-section { padding: 5rem 0; background: #fff; }

/* ── Gallery Card ──────────────────────────────────────────── */
.gallery-card {
  position: relative; border-radius: 1rem; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease; cursor: pointer;
}
.gallery-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.16); }
.gallery-card img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-card:hover img { transform: scale(1.06); }

.gallery-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,15,8,0.75), transparent);
  color: #fff; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em; padding: 1.5rem 1rem 0.85rem;
  transform: translateY(100%); transition: transform 0.35s ease;
}
.gallery-card:hover .gallery-card-label { transform: translateY(0); }
.gallery-card.hidden { display: none; }

/* ── Filter Tabs ───────────────────────────────────────────── */
.filter-tabs { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.filter-btn {
  padding: 0.55rem 1.4rem; border-radius: 50px;
  border: 1.5px solid var(--amber-400, #d97706);
  background: transparent; color: var(--amber-700, #b45309);
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--amber-600, #b45309); color: #fff;
  border-color: var(--amber-600, #b45309);
  box-shadow: 0 4px 14px rgba(180,83,9,0.3);
}

/* ── Responsive: two-col contact layout ────────────────────── */
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .why-two-col { grid-template-columns: 1fr !important; }
}