/* Raj Farms Coorg — About Page Styles */

/* ── PAGE HERO ── */
.page-hero {
  min-height: 52vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: 7rem 5vw 4rem;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: url("../images/backgrounds/hero-bg.jpg") center/cover no-repeat;
  filter: brightness(0.18);
}
.page-hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 60% at 50% 100%, #080E08 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; max-width: 640px; }
.page-eyebrow {
  font-family: "Lato", sans-serif;
  font-size: 0.52rem; font-weight: 700; letter-spacing: 0.42em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300; color: var(--text); line-height: 1.05;
  margin-bottom: 0.9rem;
}
.page-title em { font-style: italic; color: var(--gold-bright); }
.page-sub {
  font-size: 0.8rem; font-weight: 300; line-height: 1.9;
  color: rgba(238,230,210,0.6); max-width: 460px; margin: 0 auto;
}

/* ── ABOUT SECTIONS ── */
.about-section {
  padding: 5rem 5vw;
  background: var(--bg);
  max-width: 1200px; margin: 0 auto;
  box-sizing: border-box;
}
.about-section.alt { background: var(--bg2); max-width: 100%; padding: 5rem 5vw; }
.about-section.alt > * { max-width: 1200px; margin: 0 auto; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.about-grid.flip > :first-child { order: 2; }
.about-grid.flip > :last-child  { order: 1; }

/* ── ABOUT IMAGE ── */
.about-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.82) saturate(0.85);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.about-img:hover img { filter: brightness(0.9) saturate(0.95); transform: scale(1.02); }
.about-img::before {
  content: "";
  position: absolute; bottom: -0.8rem; right: -0.8rem; z-index: -1;
  width: 60%; height: 60%;
  border: 1px solid var(--border2);
}
.about-img-caption {
  position: absolute; bottom: 0.9rem; left: 0.9rem;
  font-family: "Lato", sans-serif;
  font-size: 0.42rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgb(0, 0, 0);
  padding: 0.25rem 0.6rem;
}

/* ── BODY TEXT ── */
.body-text {
  font-size: 0.8rem; font-weight: 300; line-height: 1.95;
  color: var(--text3); margin-bottom: 1rem;
}
.body-text:last-of-type { margin-bottom: 0; }

/* ── TIMELINE ── */
.timeline {
  margin-top: 2rem;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute; top: 0.45rem; bottom: 0.45rem; left: 2px;
  width: 1px; background: var(--border);
}
.timeline-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-dot {
  flex-shrink: 0; width: 6px; height: 6px; margin-top: 0.38rem;
  background: var(--gold); border-radius: 50%;
  position: relative; z-index: 1;
}
.timeline-year {
  flex-shrink: 0; width: 36px;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem; font-weight: 400; color: var(--gold-bright);
  line-height: 1.5;
}
.timeline-text {
  font-size: 0.72rem; font-weight: 300; color: var(--text3);
  line-height: 1.85;
}

/* ── CREDENTIALS GRID ── */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1100px; margin: 2.5rem auto 0;
}
.credential-card {
  background: var(--card);
  padding: 1.8rem 1.5rem;
  transition: background var(--transition);
}
.credential-card:hover { background: var(--bg3); }
.cred-icon {
  font-size: 0.5rem; color: var(--gold);
  margin-bottom: 0.9rem; opacity: 0.7;
}
.cred-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem; font-weight: 400; color: var(--text);
  margin-bottom: 0.5rem; line-height: 1.2;
}
.cred-text {
  font-size: 0.7rem; font-weight: 300; color: var(--text3); line-height: 1.85;
}

/* ── FOUNDER SECTION ── */
.founder-section {
  padding: 5rem 5vw;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.founder-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4.5rem; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
.founder-img {
  aspect-ratio: 3/4; overflow: hidden; position: relative;
}
.founder-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.82) saturate(0.8);
  transition: filter 0.5s ease;
}
.founder-img:hover img { filter: brightness(0.9) saturate(0.9); }
.founder-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem; font-weight: 400; color: var(--text);
  margin-bottom: 0.2rem; margin-top: 1.4rem;
}
.founder-title {
  font-family: "Lato", sans-serif;
  font-size: 0.48rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--earth-mid); margin-bottom: 1.4rem;
}

/* ── FOOTER (about-specific) ── */
footer .footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5vw;
  border-top: 1px solid var(--border);
  background: var(--bg3);
}
footer .footer-back {
  font-family: "Lato", sans-serif;
  font-size: 0.52rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); transition: color 0.3s;
}
footer .footer-back:hover { color: var(--gold-bright); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid, .about-grid.flip, .founder-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-grid.flip > :first-child { order: 1; }
  .about-grid.flip > :last-child  { order: 2; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
  .founder-img { max-width: 480px; }
}
@media (max-width: 600px) {
  .about-section, .founder-section { padding: 3.5rem 5vw; }
  .credentials-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 44vh; padding: 6rem 5vw 3rem; }
}
