/* ═══════════════════════════════════════════
   About Page — Styles
   ═══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   ABOUT HERO
══════════════════════════════════════════ */
.about-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 88vh;
  min-height: 480px;
  overflow: hidden;
  background: #000;
}

.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ══════════════════════════════════════════
   OUR STORY
══════════════════════════════════════════ */
.our-story-section {
  padding: 90px 0 100px;
  background: #fff;
}

/* Stacked image group */
.story-img-stack {
  position: relative;
  width: 100%;
  height: 420px;
}

.story-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  background: #eee;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Back image — top-left, rotated left */
.story-img--back {
  width: 220px;
  height: 290px;
  top: 20px;
  left: 0;
  transform: rotate(-6deg);
  z-index: 1;
}

/* Mid image — center, slight right tilt */
.story-img--mid {
  width: 220px;
  height: 320px;
  top: 50px;
  left: 130px;
  transform: rotate(3deg);
  z-index: 2;
}

/* Front image — foreground, right side */
.story-img--front {
  width: 230px;
  height: 340px;
  top: 30px;
  left: 260px;
  transform: rotate(4deg);
  z-index: 3;
}

/* Story text */
.story-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  font-style: italic;
  color: #111;
  line-height: 1.2;
  margin: 10px 0 24px;
}

.story-text {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
}

/* ══════════════════════════════════════════
   INFINITE MARQUEE SLIDER
══════════════════════════════════════════ */
.marquee-section {
  padding: 20px 0 60px;
  background: #fff;
  overflow: hidden;
}

.marquee-viewport {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.marquee-viewport:active { cursor: grabbing; }

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee-track.paused,
.marquee-viewport:active .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  flex-shrink: 0;
  width: 360px;
  height: 280px;
  overflow: hidden;
  background: #eee;
}
.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  pointer-events: none;
}
.marquee-item:hover img { transform: scale(1.05); }

/* Drag pill */
.marquee-drag-pill {
  position: absolute;
  bottom: 16px;
  right: 24px;
  background: #fff;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  pointer-events: none;
  opacity: .85;
}

/* Dot indicator */
.marquee-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  margin: 10px auto 0;
}

/* Responsive */
@media (max-width: 767px) {
  .marquee-item { width: 260px; height: 200px; }
}

/* Responsive */
@media (max-width: 991px) {
  .story-img-stack { height: 360px; }
  .story-img--back  { width: 180px; height: 240px; }
  .story-img--mid   { width: 185px; height: 270px; left: 110px; }
  .story-img--front { width: 190px; height: 290px; left: 215px; }
}
@media (max-width: 575px) {
  .story-img-stack { height: 280px; }
  .story-img--back  { width: 140px; height: 190px; }
  .story-img--mid   { width: 145px; height: 210px; left: 85px; }
  .story-img--front { width: 150px; height: 225px; left: 170px; }
}

/* ══════════════════════════════════════════
   OUR JOURNEY
══════════════════════════════════════════ */
.journey-section {
  padding: 80px 0 90px;
  background: #f7f7f7;
}

/* Collage container */
.journey-collage {
  position: relative;
  height: 480px;
}

.journey-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,.13);
  background: #ddd;
}
.journey-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.journey-img:hover img { transform: scale(1.05); }

/* Top-left — smaller portrait */
.journey-img--tl {
  width: 240px;
  height: 195px;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Main — tall, center-right, overlaps both small ones */
.journey-img--main {
  width: 255px;
  height: 420px;
  top: 30px;
  left: 195px;
  z-index: 3;
}

/* Bottom-left — smaller, overlaps main slightly */
.journey-img--bl {
  width: 240px;
  height: 195px;
  bottom: 0;
  left: 0;
  z-index: 2;
}

/* Dot indicator */
.journey-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #333;
  border-radius: 50%;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

/* Heading — mixed fonts */
.journey-heading {
  margin: 10px 0 24px;
  line-height: 1.15;
}
.journey-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  font-style: italic;
  color: #111;
  display: block;
}
.journey-bold {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  font-style: normal;
  color: #111;
  display: block;
}

.journey-text {
  font-size: 14.5px;
  color: #444;
  line-height: 1.9;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .journey-collage   { height: 380px; }
  .journey-img--tl   { width: 190px; height: 155px; }
  .journey-img--main { width: 200px; height: 340px; left: 155px; }
  .journey-img--bl   { width: 190px; height: 155px; }
}
@media (max-width: 575px) {
  .journey-collage   { height: 300px; }
  .journey-img--tl   { width: 150px; height: 120px; }
  .journey-img--main { width: 160px; height: 265px; left: 120px; }
  .journey-img--bl   { width: 150px; height: 120px; }
}

/* ══════════════════════════════════════════
   PARALLAX BANNER
══════════════════════════════════════════ */
.about-parallax {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 460px;
  background-image: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ══════════════════════════════════════════
   OUR APPROACH
══════════════════════════════════════════ */
.approach-section {
  padding: 70px 0 80px;
  background: #fff;
}

/* Label column */
.approach-label-wrap {
  border-top: 2px solid #ddd;
  padding-top: 14px;
  margin-bottom: 18px;
}
.approach-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  margin: 0;
}
.approach-intro {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* Each numbered principle */
.approach-item {
  border-top: 2px solid #ddd;
  padding-top: 14px;
}

.approach-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.approach-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
}

.approach-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.85;
  margin: 0;
}
