/* ════════════════════════════════════════════
   CC ABOUT SECTION
   ════════════════════════════════════════════ */

.cc-about {
  position: relative;
  background-color: var(--cc-dark);
  padding-bottom: 110px;
  overflow: visible;
}

/* Grain texture */
.cc-about::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 0;
}

/* Átmenet a hero-ból: halvány felső sor */
.cc-about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(168,149,122,0.2) 30%,
    rgba(168,149,122,0.2) 70%,
    transparent 100%
  );
  z-index: 1;
}

.cc-about__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: flex-start;
  gap: 72px;
}

/* ── MÁSODLAGOS KÉP ── */
.cc-about__img-secondary {
  width: 62%;
  margin-left: auto;
  margin-top: 16px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.1),
    0 16px 32px rgba(0,0,0,0.45);
}

.cc-about__img-secondary img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cc-about__img-secondary:hover img {
  transform: scale(1.045);
}

/* ── KÉP OSZLOP ── */
.cc-about__img-col {
  flex: 0 0 43%;
  margin-top: -56px;
  position: relative;
  z-index: 4;
}

.cc-about__img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 800 / 660;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.07),
    0 24px 48px rgba(0,0,0,0.45),
    0 60px 100px rgba(0,0,0,0.35);
}

.cc-about__img-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.cc-about__img-frame:hover img {
  transform: scale(1.045);
}

.cc-about__img-placeholder {
  position: absolute;
  inset: 0;
  background: rgba(168,149,122,0.1);
}

/* Taupe baloldali akcentus sáv */
.cc-about__img-frame::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: var(--cc-taupe);
  z-index: 2;
  opacity: 0.7;
}

/* Kép alatti location badge */
.cc-about__img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 24px 22px;
  background: linear-gradient(
    to top,
    rgba(26,20,16,0.92) 0%,
    rgba(26,20,16,0.3) 60%,
    transparent 100%
  );
  z-index: 3;
}

.cc-about__img-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cc-font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(247,242,236,0.6);
}

.cc-about__img-location::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--cc-taupe);
  flex-shrink: 0;
  opacity: 0.6;
}

/* ── SZÖVEG OSZLOP ── */
.cc-about__text-col {
  flex: 1;
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cc-about__eyebrow {
  font-family: var(--cc-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--cc-taupe);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cc-about__eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 36px;
  background: var(--cc-taupe);
  opacity: 0.5;
}

.cc-about__heading {
  font-family: var(--cc-font-heading);
  font-size: clamp(36px, 3.6vw, 56px);
  font-weight: 400;
  line-height: 1.13;
  color: #FFFFFF;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}

.cc-about__heading em {
  font-style: italic;
  font-weight: 300;
  color: rgba(247,242,236,0.82);
  display: block;
}

/* Dekoratív taupe vonal a heading alatt */
.cc-about__rule {
  width: 48px;
  height: 1px;
  background: var(--cc-taupe);
  margin: 24px 0 28px;
  opacity: 0.55;
}

.cc-about__body p {
  font-family: var(--cc-font-body);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(247,242,236,0.72);
  margin-bottom: 16px;
  max-width: 440px;
}

.cc-about__body p:last-child { margin-bottom: 0; }

/* ── CTA GOMB ── */
.cc-about__cta {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--cc-font-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cc-cream);
  border: 1px solid rgba(247,242,236,0.28);
  padding: 15px 30px;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, color 0.35s ease;
}

.cc-about__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cc-taupe);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.cc-about__cta:hover {
  border-color: var(--cc-taupe);
  color: #FFFFFF;
}

.cc-about__cta:hover::before {
  transform: translateX(0);
}

.cc-about__cta svg {
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.cc-about__cta:hover svg {
  transform: translateX(5px);
}

/* ════════════════════════════
   SCROLL ANIMÁCIÓ
   ════════════════════════════ */

.cc-about__img-col,
.cc-about__eyebrow,
.cc-about__heading,
.cc-about__rule,
.cc-about__body,
.cc-about__cta {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cc-about__img-col {
  transform: translateY(16px);
  transition-duration: 1s;
}

.cc-about.is-visible .cc-about__img-col  { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.cc-about.is-visible .cc-about__eyebrow  { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.cc-about.is-visible .cc-about__heading  { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.cc-about.is-visible .cc-about__rule     { opacity: 0.55; transform: translateY(0); transition-delay: 0.26s; }
.cc-about.is-visible .cc-about__body     { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
.cc-about.is-visible .cc-about__cta      { opacity: 1; transform: translateY(0); transition-delay: 0.42s; }

/* ════════════════════════
   RESPONSIVE
   ════════════════════════ */

@media (max-width: 1100px) {
  .cc-about__inner {
    padding: 0 48px;
    gap: 52px;
  }
  .cc-about__img-col { flex: 0 0 40%; }
}

@media (max-width: 768px) {
  .cc-about { padding-bottom: 72px; }

  .cc-about__inner {
    flex-direction: column;
    padding: 0 24px;
    gap: 0;
    align-items: center;
  }

  .cc-about__img-col {
    width: 86%;
    margin-top: -39px;
    flex: none;
  }

  .cc-about__text-col {
    padding-top: 36px;
    width: 100%;
  }

  .cc-about__heading { font-size: 36px; }

  .cc-about__body p {
    max-width: 100%;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .cc-about__img-col { width: 94%; margin-top: -32px; }
  .cc-about__inner { padding: 0 20px; }
}
