/* ============================================================
   ABOUT / WE CREATE TRIPS — sections/about.css
   ============================================================ */

.about {
  background: var(--clr-white);
  padding-block: var(--section-py);
}

/* ---- 2-column layout ---- */
.about__grid {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 68px;
  align-items: center;
}

/* =======================
   LEFT — Image Collage
   ======================= */
.about__images {
  position: relative;
  padding-bottom: 40px;   /* room for badge */
}

/* Main portrait image */
.about__img-main {
  border-radius: 0;
  clip-path: polygon(
    28px 0,
    calc(100% - 28px) 0,
    100% 28px,
    100% calc(100% - 28px),
    calc(100% - 28px) 100%,
    28px 100%,
    0 calc(100% - 28px),
    0 28px
  );
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-xl);
}
.about__img-main img {
  width: 100%;
  height: 100%;
  clip-path: inherit;
  object-fit: cover;
}

/* Smaller overlapping image */
.about__img-sm {
  position: absolute;
  bottom: 0;
  right: -24px;
  width: 48%;
  height: 200px;
  border-radius: 0;
  clip-path: polygon(
    16px 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% calc(100% - 16px),
    calc(100% - 16px) 100%,
    16px 100%,
    0 calc(100% - 16px),
    0 16px
  );
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: var(--shadow-lg);
  z-index: var(--z-above);
}
.about__img-sm img {
  position: absolute;
  inset: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  clip-path: polygon(
    12px 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    12px 100%,
    0 calc(100% - 12px),
    0 12px
  );
  object-fit: cover;
}
.about__img-sm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-white);
  clip-path: polygon(
    16px 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% calc(100% - 16px),
    calc(100% - 16px) 100%,
    16px 100%,
    0 calc(100% - 16px),
    0 16px
  );
}

/* Orange badge */
.about__badge {
  position: absolute;
  bottom: 16px;
  left: -20px;
  z-index: calc(var(--z-above) + 1);
  width: 96px;
  height: 96px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--clr-white);
  box-shadow: var(--shadow-orange);
  animation: rotateSlow 18s linear infinite;
}

/* Rotating ring of dots (decorative) */
.about__badge::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--r-full);
  border: 2px dashed rgba(255,255,255,.4);
}

.about__badge-num {
  font-family: var(--ff-serif);
  font-size: 1.9rem;
  font-weight: var(--fw-extrabold);
  line-height: 1;
}
.about__badge-num sup {
  font-size: 0.9rem;
  vertical-align: super;
  line-height: 0;
}
.about__badge-label {
  font-size: 0.6rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  opacity: .9;
}

@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}
/* Keep inner text from rotating */
.about__badge-num,
.about__badge-label {
  animation: counter-rotate 18s linear infinite;
}
@keyframes counter-rotate {
  to { transform: rotate(-360deg); }
}

/* Decorative dots pattern */
.about__dots {
  display: none;
}

/* =======================
   RIGHT — Text + Features
   ======================= */
.about__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.about__text .section-title {
  font-family: 'Normiyola', 'Normiyola VIP', var(--ff-display);
  color: #d49a32;
  font-size: clamp(2.7rem, 5.76vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.035em;
}

.about__desc {
  font-size: var(--fs-14);
  color: var(--clr-gray-500);
  line-height: var(--lh-relaxed);
  max-width: 460px;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-2);
}
