/* =========================
   ABOUT PAGE – STORY FLOW
========================= */

.gc-about {
  background: #D8CBB8;
  color: #2c2c2c;
}

/* HERO */
.gc-about-hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gc-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.55));
}

.gc-about-hero__inner {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.gc-about-hero__title {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(52px, 9vw, 120px);
  color: #fff;
  margin: 0 0 12px;
}

.gc-about-hero__lead {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}

/* STORY TEXT */
.gc-about-story {
  padding: 96px 24px;
  background: #F2E7D6;
}

.gc-about-story__text {
  max-width: 860px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
}

/* SPLIT SECTION */
.gc-about-split {
  background: #F2E7D6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.gc-about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center; /* ← THIS is the key */
}

.gc-about-split__content {
  padding: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gc-about-split__content h2 {
  font-family: "Instrument Serif", serif;
  font-size: 36px;
  margin-bottom: 16px;
}

/* LEGACY STATS */
.gc-about-legacy {
  background: #7A8062;
  color: #fff;
  padding: 72px 24px;
}

.gc-about-legacy__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
  gap: 24px;
}

.gc-about-legacy__grid span {
  font-family: "Instrument Serif", serif;
  font-size: 48px;
  display: block;
}

/* PHILOSOPHY */
.gc-about-philosophy {
  padding: 96px 24px;
  text-align: center;
}

.gc-about-philosophy h2 {
  font-family: "Instrument Serif", serif;
  font-size: 36px;
  margin-bottom: 12px;
}

.gc-about-philosophy p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
}

/* IMAGE STRIP */
.gc-about-gallery {
  padding: 64px 0;
  overflow: hidden;
}

.gc-about-gallery__track {
  display: flex;
  gap: 18px;
  padding: 0 24px;
}

.gc-about-gallery__track img {
  width: 60vw;
  max-width: 680px;
  height: 380px;
  object-fit: cover;
  border-radius: 6px;
}

/* ABOUT CTA */

.gc-about-cta {
  background: #F2E7D6;
  padding: 96px 24px 88px;
  text-align: center;
}

.gc-about-cta h2 {
  font-family: "Instrument Serif", serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 32px;
}

.gc-about-cta__buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Base button */
.gc-about-cta__btn {
  padding: 14px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background .2s ease, transform .15s ease;
}

/* Primary */
.gc-about-cta__btn--primary {
  background: #7A8062;
  color: #fff;
}

.gc-about-cta__btn--primary:hover {
  background: #646a52;
  transform: translateY(-1px);
}

/* Secondary */
.gc-about-cta__btn--secondary {
  border: 1px solid #7A8062;
  color: #7A8062;
}

.gc-about-cta__btn--secondary:hover {
  background: #7A8062;
  color: #fff;
}

/* WhatsApp */
.gc-about-cta__btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.gc-about-cta__btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 640px) {
  .gc-about-cta__buttons {
    flex-direction: column;
  }
}
/* ABOUT — DRIFTING IMAGE STRIP */

.gc-about-gallery {
  padding: 72px 0;
  overflow: hidden;
  background: #F2E7D6;
}

.gc-about-gallery .gc-gallery-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.gc-about-gallery .gc-gallery-slide {
  flex: 0 0 auto;
  width: 60vw;
  max-width: 680px;
}

.gc-about-gallery .gc-gallery-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .gc-about-gallery .gc-gallery-slide {
    width: 88vw;
  }

  .gc-about-gallery .gc-gallery-slide img {
    height: 300px;
  }
}


/* MOBILE */
@media (max-width: 900px) {
  .gc-about-split {
    grid-template-columns: 1fr;
  }

  .gc-about-split__content {
    padding: 56px 24px;
  }

  .gc-about-legacy__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gc-about-gallery__track img {
    width: 88vw;
    height: 300px;
  }
}